9 Commits

Author SHA1 Message Date
ea9f632fcc Merge version_3 into main
Merge version_3 into main
2026-03-05 20:16:54 +00:00
bd21dabcc0 Update src/app/page.tsx 2026-03-05 20:16:50 +00:00
57e1e68910 Update src/app/layout.tsx 2026-03-05 20:16:50 +00:00
149beebd56 Merge version_2 into main
Merge version_2 into main
2026-03-05 20:15:07 +00:00
5766b67eb0 Update src/app/page.tsx 2026-03-05 20:15:03 +00:00
04026f8ef0 Update src/app/layout.tsx 2026-03-05 20:15:03 +00:00
15731c36ec Merge version_1 into main
Merge version_1 into main
2026-03-05 20:11:01 +00:00
666ef8997d Merge version_1 into main
Merge version_1 into main
2026-03-05 20:10:16 +00:00
44ccc8b6f4 Merge version_1 into main
Merge version_1 into main
2026-03-05 20:09:02 +00:00
2 changed files with 10 additions and 46 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Florist Southampton | Fresh Flowers & Same Day Delivery", description: "Premium florist in Southampton offering fresh flower arrangements for any occasion. Same day delivery available before 2pm. Shop now for birthdays, anniversaries, and more.", keywords: "florist Southampton, fresh flowers, flower delivery, bouquets, same day delivery, floral arrangements", robots: {
index: true,
follow: true,
},
openGraph: {
title: "The Flower Shop Southampton | Premium Fresh Flowers", description: "Beautiful handcrafted floral arrangements for every occasion with same day delivery to Southampton.", type: "website", siteName: "The Flower Shop Southampton", images: [
{
url: "http://img.b2bpic.net/free-photo/exotic-rustic-bunch-flowers-mixed-colors_114579-1969.jpg", alt: "Beautiful fresh flower bouquet"},
],
},
twitter: {
card: "summary_large_image", title: "The Flower Shop Southampton", description: "Fresh flowers for every occasion. Same day delivery available.", images: ["http://img.b2bpic.net/free-photo/exotic-rustic-bunch-flowers-mixed-colors_114579-1969.jpg"],
},
};
title: "The Flower Shop - Premium Fresh Flowers Southampton", description: "Expertly crafted fresh flower arrangements with same-day delivery to Southampton and surrounding areas. Order online or visit our shops."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -56,7 +56,7 @@ export default function LandingPage() {
mediaAnimation="blur-reveal"
buttonAnimation="slide-up"
buttons={[
{ text: "Shop Now", href: "occasions" },
{ text: "Order Fresh Flowers", href: "occasions" },
{ text: "Learn More", href: "about" }
]}
testimonials={[
@@ -245,7 +245,7 @@ export default function LandingPage() {
name: "message", placeholder: "Tell us about your flower needs or ask a question...", rows: 5,
required: true
}}
buttonText="Send Message"
buttonText="Get Your Custom Quote"
/>
</div>
@@ -290,4 +290,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}