Switch to version 4: modified src/app/layout.tsx

This commit is contained in:
2026-03-06 16:44:14 +00:00
parent a6142fb748
commit 3ff7cbd154

View File

@@ -1,14 +1,7 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Poof Sites - Web Development Studio", description: "Professional web development services that convert. We build stunning, responsive websites for startups and established brands."};
title: "Poof Sites - Web Development Studio", description: "We build websites that convert. Poof Sites specializes in creating stunning, responsive websites that drive business growth."};
export default function RootLayout({
children,
@@ -17,7 +10,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.variable}>
<body>
{children}
<script