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

View File

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

View File

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

View File

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

View File

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