diff --git a/src/app/globals.css b/src/app/globals.css index f624db2..b5c61c9 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,5 +1,3 @@ -@import "tailwindcss"; -@import "./styles/variables.css"; -@import "./styles/theme.css"; -@import "./styles/utilities.css"; -@import "./styles/base.css"; +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ed2f241..30a19cf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,15 +1,13 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import "./styles/variables.css"; +import { Inter } from "next/font/google"; import "./globals.css"; +import "./styles/variables.css"; +import "./styles/base.css"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Taishan Construction | Premium Hardscape & Building Services Toronto", description: "Premium interlock driveways, patios, landscaping & construction services across the GTA. Free 3D design, expert installation, luxury results." -}; + title: "Taishan Construction | Premium Hardscape & Outdoor Design", description: "Toronto's trusted source for luxury outdoor spaces. Custom driveways, patios, and hardscaping designed with precision and built to last."}; export default function RootLayout({ children, @@ -18,12 +16,7 @@ export default function RootLayout({ }) { return ( -
- - - - {children} - + {children}