|
25 | 25 | } |
26 | 26 | }, |
27 | 27 | "HomePage": { |
28 | | - "title": "Hello world!", |
29 | | - "intro": "You can open <Link>/docs</Link> and see the documentation." |
| 28 | + "title": "The React Framework for the Web", |
| 29 | + "subtitle": "Used by some of the world's largest companies, Next.js enables you to create <strong>high-quality web applications</strong> with the power of React components.", |
| 30 | + "getStarted": "Get Started", |
| 31 | + "learn": "Learn Next.js", |
| 32 | + "copyCommand": "▲ ~ npx create-next-app@latest", |
| 33 | + "featuresTitle": "What's in Next.js?", |
| 34 | + "featuresSubtitle": "Everything you need to build great products on the web.", |
| 35 | + "features": [ |
| 36 | + { |
| 37 | + "title": "Built-in Optimizations", |
| 38 | + "desc": "Automatic Image, Font, and Script Optimizations for improved UX and Core Web Vitals.", |
| 39 | + "href": "/docs/app/getting-started/images" |
| 40 | + }, |
| 41 | + { |
| 42 | + "title": "Data Fetching", |
| 43 | + "desc": "Make your React component async and await your data. Next.js supports both server and client data fetching.", |
| 44 | + "href": "/docs/app/building-your-application/data-fetching" |
| 45 | + }, |
| 46 | + { |
| 47 | + "title": "Server Actions", |
| 48 | + "desc": "Run server code by calling a function. Skip the API. Then, easily revalidate cached data and update your UI in one network roundtrip.", |
| 49 | + "href": "/docs/app/building-your-application/data-fetching/server-actions-and-mutations" |
| 50 | + }, |
| 51 | + { |
| 52 | + "title": "Advanced Routing & Nested Layouts", |
| 53 | + "desc": "Create routes using the file system, including support for more advanced routing patterns and UI layouts.", |
| 54 | + "href": "/docs/app/building-your-application/routing" |
| 55 | + }, |
| 56 | + { |
| 57 | + "title": "Dynamic HTML Streaming", |
| 58 | + "desc": "Instantly stream UI from the server, integrated with the App Router and React Suspense.", |
| 59 | + "href": "/docs/app/building-your-application/routing/loading-ui-and-streaming" |
| 60 | + }, |
| 61 | + { |
| 62 | + "title": "CSS Support", |
| 63 | + "desc": "Style your application with your favorite tools, including support for CSS Modules, Tailwind CSS, and popular community libraries.", |
| 64 | + "href": "/app/getting-started/css" |
| 65 | + }, |
| 66 | + { |
| 67 | + "title": "Route Handlers", |
| 68 | + "desc": "Build API endpoints to securely connect with third-party services for handling auth or listening for webhooks.", |
| 69 | + "href": "/docs/app/building-your-application/routing/route-handlers" |
| 70 | + }, |
| 71 | + { |
| 72 | + "title": "Middleware", |
| 73 | + "desc": "Take control of the incoming request. Use code to define routing and access rules for authentication, experimentation, and internationalization.", |
| 74 | + "href": "/docs/app/building-your-application/routing/middleware" |
| 75 | + }, |
| 76 | + { |
| 77 | + "title": "React Server Components", |
| 78 | + "desc": "Add components without sending additional client-side JavaScript. Built on the latest React features.", |
| 79 | + "href": "/docs/app/getting-started/server-and-client-components" |
| 80 | + }, |
| 81 | + { |
| 82 | + "title": "Client and Server Rendering", |
| 83 | + "desc": "Flexible rendering and caching options, including Incremental Static Regeneration (ISR), on a per-page level.", |
| 84 | + "href": "/docs/app/getting-started/partial-prerendering" |
| 85 | + }, |
| 86 | + { |
| 87 | + "title": "Next.js 15", |
| 88 | + "desc": "The power of full-stack to the frontend. Read the release notes.", |
| 89 | + "href": "https://nextjs.org/blog/next-15" |
| 90 | + } |
| 91 | + ] |
30 | 92 | } |
31 | 93 | } |
0 commit comments