next.js/test/e2e/app-dir/router-disable-smooth-scroll/fixtures/optimized/app/page.tsx
page.tsx22 lines570 B
import React from 'react'
import Link from 'next/link'

export default function HomePage() {
  return (
    <div>
      <h1>Smooth Scroll Optimization Tests</h1>
      <div style={{ marginBottom: '20px' }}>
        <Link
          href="/optimized/page1"
          style={{ display: 'block', marginBottom: '10px' }}
        >
          Test Optimized Smooth Scroll (with data attribute)
        </Link>
        <Link href="/legacy/page1" style={{ display: 'block' }}>
          Test Legacy Smooth Scroll (no data attribute)
        </Link>
      </div>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN