first commit
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"dev": "next dev --turbopack",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"lint": "next lint"
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
@import "tailwindcss";
|
||||
|
||||
|
||||
:root {
|
||||
--background: #ffffff;
|
||||
|
||||
@ -1,16 +1,16 @@
|
||||
// import { Geist, Geist_Mono } from "next/font/google";
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
// const geistSans = Geist({
|
||||
// variable: "--font-geist-sans",
|
||||
// subsets: ["latin"],
|
||||
// });
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
// const geistMono = Geist_Mono({
|
||||
// variable: "--font-geist-mono",
|
||||
// subsets: ["latin"],
|
||||
// });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App",
|
||||
@ -25,7 +25,8 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en">
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
// className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
className="antialiased"
|
||||
>
|
||||
{children}
|
||||
</body>
|
||||
|
||||
@ -12,7 +12,7 @@ const Footer = () => {
|
||||
<Image
|
||||
src="/images/logo-white.svg"
|
||||
alt="3engine Logo"
|
||||
className="h-12 w-auto"
|
||||
width={100} height={100}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -14,7 +14,7 @@ const Header = () => {
|
||||
<Image
|
||||
src="/images/logo-splash.svg"
|
||||
alt="3engine Logo"
|
||||
className="h-12 w-auto"
|
||||
width={100} height={100}
|
||||
/>
|
||||
</Link>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user