6 Commits

Author SHA1 Message Date
a6961a2555 Update src/app/page.tsx 2026-03-04 04:44:13 +00:00
ce8f11de67 Update src/app/layout.tsx 2026-03-04 04:44:12 +00:00
6bdeb13b44 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:41:24 +00:00
bb60a95e47 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:40:35 +00:00
601be2f3e4 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:32:58 +00:00
d7f0d11ad6 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:31:31 +00:00
2 changed files with 8 additions and 43 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
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"],
});
const inter = Inter({ subsets: ["latin"] });
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: {
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"],
},
};
title: "Phoebe Cakes & Bake", description: "Award-Winning Bakery Since 2015"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -42,7 +42,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogoBillboardSplit
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" }}
buttons={[
{ text: "Order a Cake", href: "#contact" },