From 2a4a624998f12fa8b4f89a186add0a88587a8872 Mon Sep 17 00:00:00 2001 From: michellestarck2341-design Date: Wed, 25 Feb 2026 23:44:19 +0500 Subject: [PATCH] Update page.jsx --- app/page.jsx | 78 ++++++++++++---------------------------------------- 1 file changed, 18 insertions(+), 60 deletions(-) diff --git a/app/page.jsx b/app/page.jsx index 62e136f2..101d6482 100644 --- a/app/page.jsx +++ b/app/page.jsx @@ -1,63 +1,21 @@ -import Link from 'next/link'; -import { Card } from 'components/card'; -import { ContextAlert } from 'components/context-alert'; -import { Markdown } from 'components/markdown'; -import { RandomQuote } from 'components/random-quote'; -import { getNetlifyContext } from 'utils'; +import React from 'react'; -const contextExplainer = ` -The card below is rendered on the server based on the value of \`process.env.CONTEXT\` -([docs](https://docs.netlify.com/configure-builds/environment-variables/#build-metadata)): -`; - -const preDynamicContentExplainer = ` -The card content below is fetched by the client-side from \`/quotes/random\` (see file \`app/quotes/random/route.js\`) with a different quote shown on each page load: -`; - -const ctx = getNetlifyContext(); - -export default function Page() { - return ( -
-
- -

Netlify Platform Starter – Next.js

-

- Deploy the latest version of Next.js — including Turbopack, React Compiler, and the new caching APIs - — on Netlify in seconds. No configuration or custom adapter required. -

- - Read the Docs - -
- {!!ctx && ( -
- - -
- )} -
- - -
-
- ); +const Page = () => { + return ( +
+

Welcome to Kuronami

+

+ Discover the latest in fashion and technology. For more details, check out our + + Business + page. +

+
+ ); } -function RuntimeContextCard() { - const title = `Netlify Context: running in ${ctx} mode.`; - if (ctx === 'dev') { - return ( - -

Next.js will rebuild any page you navigate to, including static pages.

-
- ); - } else { - const now = new Date().toISOString(); - return ( - -

This page was statically-generated at build time ({now}).

-
- ); - } -} +export default Page;