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