diff --git a/pages/index.js b/pages/index.js index b8284b3..408e87b 100644 --- a/pages/index.js +++ b/pages/index.js @@ -1,5 +1,6 @@ import Image from "next/image"; import localFont from "next/font/local"; +import Link from "next/link" const geistSans = localFont({ src: "./fonts/GeistVF.woff", @@ -14,102 +15,13 @@ const geistMono = localFont({ export default function Home() { return ( -
-
- Next.js logo -
    -
  1. - Get started by editing{" "} - - pages/index.js - - . -
  2. -
  3. Save and see your changes instantly.
  4. -
- -
- - Vercel logomark - Deploy now - - - Read our docs - -
-
- +
); } diff --git a/pages/newpage.js b/pages/newpage.js new file mode 100644 index 0000000..c616de4 --- /dev/null +++ b/pages/newpage.js @@ -0,0 +1,11 @@ +// pages/newpage.js +import React from 'react'; + +export default function NewPage() { + return ( +
+

This is the New Page

+

Welcome to your new page in Next.js styled with Tailwind CSS!

+
+ ); +}