first commit

This commit is contained in:
mukesh13
2025-06-25 18:11:58 +05:30
parent 97a189ad2c
commit 9f699737c7
5 changed files with 17 additions and 17 deletions

View File

@ -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"

View File

@ -1,6 +1,5 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "tailwindcss";
:root {
--background: #ffffff;

View File

@ -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,10 +25,11 @@ 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>
</html>
);
}
}

View File

@ -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>

View File

@ -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>