Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bd21dabcc0 | |||
| 57e1e68910 | |||
| 149beebd56 | |||
| 5766b67eb0 | |||
| 04026f8ef0 | |||
| 15731c36ec | |||
| 666ef8997d | |||
| 44ccc8b6f4 |
@@ -1,55 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Lato } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
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."};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -56,7 +56,7 @@ export default function LandingPage() {
|
|||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Shop Now", href: "occasions" },
|
{ text: "Order Fresh Flowers", href: "occasions" },
|
||||||
{ text: "Learn More", href: "about" }
|
{ text: "Learn More", href: "about" }
|
||||||
]}
|
]}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
@@ -245,7 +245,7 @@ export default function LandingPage() {
|
|||||||
name: "message", placeholder: "Tell us about your flower needs or ask a question...", rows: 5,
|
name: "message", placeholder: "Tell us about your flower needs or ask a question...", rows: 5,
|
||||||
required: true
|
required: true
|
||||||
}}
|
}}
|
||||||
buttonText="Send Message"
|
buttonText="Get Your Custom Quote"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -290,4 +290,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user