From 6c1cbe9f4d956ad6140c780b2f88f5de4e4eee67 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sun, 12 Dec 2021 23:23:52 +0100 Subject: build: move global styles and pages inside src directory --- src/pages/index.tsx | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/pages/index.tsx (limited to 'src/pages/index.tsx') diff --git a/src/pages/index.tsx b/src/pages/index.tsx new file mode 100644 index 0000000..da31f7d --- /dev/null +++ b/src/pages/index.tsx @@ -0,0 +1,72 @@ +import type { NextPage } from 'next'; +import Head from 'next/head'; +import Image from 'next/image'; +import styles from '../styles/Home.module.css'; + +const Home: NextPage = () => { + return ( +
+ + Create Next App + + + + +
+

+ Welcome to Next.js! +

+ +

+ Get started by editing{' '} + pages/index.tsx +

+ +
+ +

Documentation →

+

Find in-depth information about Next.js features and API.

+
+ + +

Learn →

+

Learn about Next.js in an interactive course with quizzes!

+
+ + +

Examples →

+

Discover and deploy boilerplate example Next.js projects.

+
+ + +

Deploy →

+

+ Instantly deploy your Next.js site to a public URL with Vercel. +

+
+
+
+ + +
+ ); +}; + +export default Home; -- cgit v1.2.3