From 16994037ac3939976a47c390c0d88bc90650db07 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 12:57:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 29d21ff..8acf75e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,13 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; -import "./styles/variables.css"; import "./globals.css"; +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Kviten - Premium Floral Design", description: "Exquisite floral artistry for weddings, events, and special occasions"}; + title: "Kviten - Exquisite Floral Artistry", description: "Transform your moments into unforgettable memories with Kviten's handcrafted floral arrangements."}; export default function RootLayout({ children, @@ -15,7 +16,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +