aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.js
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-14 08:38:26 +0530
committerreal-zephex <[email protected]>2024-03-14 08:38:26 +0530
commitaef3c9a4f2088e15562e22d7c9ca11cdb8b837a7 (patch)
tree80a070025311560c4ccf01996a6758d02657d337 /src/app/page.js
downloaddramalama-aef3c9a4f2088e15562e22d7c9ca11cdb8b837a7.tar.xz
dramalama-aef3c9a4f2088e15562e22d7c9ca11cdb8b837a7.zip
Initial commit from Create Next App
Diffstat (limited to 'src/app/page.js')
-rw-r--r--src/app/page.js95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/app/page.js b/src/app/page.js
new file mode 100644
index 0000000..1cb19f3
--- /dev/null
+++ b/src/app/page.js
@@ -0,0 +1,95 @@
+import Image from "next/image";
+import styles from "./page.module.css";
+
+export default function Home() {
+ return (
+ <main className={styles.main}>
+ <div className={styles.description}>
+ <p>
+ Get started by editing&nbsp;
+ <code className={styles.code}>src/app/page.js</code>
+ </p>
+ <div>
+ <a
+ href="https://vercel.com?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
+ target="_blank"
+ rel="noopener noreferrer"
+ >
+ By{" "}
+ <Image
+ src="/vercel.svg"
+ alt="Vercel Logo"
+ className={styles.vercelLogo}
+ width={100}
+ height={24}
+ priority
+ />
+ </a>
+ </div>
+ </div>
+
+ <div className={styles.center}>
+ <Image
+ className={styles.logo}
+ src="/next.svg"
+ alt="Next.js Logo"
+ width={180}
+ height={37}
+ priority
+ />
+ </div>
+
+ <div className={styles.grid}>
+ <a
+ href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
+ className={styles.card}
+ target="_blank"
+ rel="noopener noreferrer"
+ >
+ <h2>
+ Docs <span>-&gt;</span>
+ </h2>
+ <p>Find in-depth information about Next.js features and API.</p>
+ </a>
+
+ <a
+ href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
+ className={styles.card}
+ target="_blank"
+ rel="noopener noreferrer"
+ >
+ <h2>
+ Learn <span>-&gt;</span>
+ </h2>
+ <p>Learn about Next.js in an interactive course with&nbsp;quizzes!</p>
+ </a>
+
+ <a
+ href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
+ className={styles.card}
+ target="_blank"
+ rel="noopener noreferrer"
+ >
+ <h2>
+ Templates <span>-&gt;</span>
+ </h2>
+ <p>Explore starter templates for Next.js.</p>
+ </a>
+
+ <a
+ href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
+ className={styles.card}
+ target="_blank"
+ rel="noopener noreferrer"
+ >
+ <h2>
+ Deploy <span>-&gt;</span>
+ </h2>
+ <p>
+ Instantly deploy your Next.js site to a shareable URL with Vercel.
+ </p>
+ </a>
+ </div>
+ </main>
+ );
+}