add inital project
This commit is contained in:
3
src/app/globals.css
Normal file
3
src/app/globals.css
Normal file
@ -0,0 +1,3 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
22
src/app/layout.tsx
Normal file
22
src/app/layout.tsx
Normal file
@ -0,0 +1,22 @@
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata = {
|
||||
title: "Example Site",
|
||||
description:
|
||||
"Template by https://git.fascinated.cc/Fascinated/nextjs-13-template-with-tailwindcss",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
18
src/app/page.tsx
Normal file
18
src/app/page.tsx
Normal file
@ -0,0 +1,18 @@
|
||||
export default function Home() {
|
||||
return (
|
||||
<main className="flex flex-col items-center justify-center w-screen h-screen">
|
||||
<h1 className="text-4xl font-bold">Hello, world!</h1>
|
||||
|
||||
<p className="mt-4 text-lg">
|
||||
This is a template for Next.js 13 with Tailwind CSS.
|
||||
</p>
|
||||
<p className="mt-4 text-lg text-blue-500">
|
||||
Created by{" "}
|
||||
<a href="https://git.fascinated.cc/Fascinated/nextjs-13-template-with-tailwindcss">
|
||||
Fascinated
|
||||
</a>
|
||||
.
|
||||
</p>
|
||||
</main>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user