Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a6961a2555 | |||
| ce8f11de67 | |||
| 6bdeb13b44 | |||
| bb60a95e47 | |||
| 601be2f3e4 | |||
| d7f0d11ad6 |
@@ -1,54 +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 { Open_Sans } from "next/font/google";
|
import "@/styles/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 openSans = Open_Sans({
|
|
||||||
variable: "--font-open-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Phoebe Cakes & Bake | Handcrafted Custom Cakes", description: "Award-winning bakery specializing in custom cakes, pastries, and gourmet treats. Fresh ingredients, beautiful designs, fast delivery. Order your cake today!", keywords: "custom cakes, bakery, handcrafted cakes, pastries, cake delivery, celebration cakes", robots: {
|
title: "Phoebe Cakes & Bake", description: "Award-Winning Bakery Since 2015"};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Phoebe Cakes & Bake | Handcrafted Custom Cakes", description: "Discover freshly baked, beautifully designed cakes perfect for any celebration", url: "https://phoebecakesandbake.com", siteName: "Phoebe Cakes & Bake", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/lemon-pie-drink-wooden-platter_114579-18546.jpg", alt: "Phoebe Cakes & Bake featured cakes"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Phoebe Cakes & Bake | Handcrafted Custom Cakes", description: "Award-winning bakery with fresh, custom cakes and pastries", images: ["http://img.b2bpic.net/free-photo/lemon-pie-drink-wooden-platter_114579-18546.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} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboardSplit
|
<HeroLogoBillboardSplit
|
||||||
logoText="Phoebe Cakes & Bake"
|
logoText="Phoebe Cakes & Bake"
|
||||||
description="Freshly baked, handcrafted cakes and pastries made with love and the finest ingredients. Perfect for celebrations, special occasions, or simply treating yourself."
|
description="Award-Winning Bakery Since 2015"
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Order a Cake", href: "#contact" },
|
{ text: "Order a Cake", href: "#contact" },
|
||||||
|
|||||||
Reference in New Issue
Block a user