Merge version_3 into main #4
@@ -1,52 +1,21 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Poppins } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Bee to Me | Sustainable Floral Arrangements & Design", description: "Handcrafted, eco-friendly floral arrangements that celebrate nature's pollinators. Shop premium bouquets, wedding flowers, and custom designs with sustainable, locally-sourced blooms.", keywords: "flowers, floral arrangements, sustainable florist, wedding flowers, bouquets, eco-friendly, local flowers, bee conservation", metadataBase: new URL("https://beetome.com"),
|
||||
alternates: {
|
||||
canonical: "https://beetome.com"
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
},
|
||||
openGraph: {
|
||||
title: "Bee to Me | Premium Sustainable Floral Arrangements", description: "Discover handcrafted floral designs that honor pollinators and celebrate natural beauty. Shop sustainable, eco-friendly arrangements today.", type: "website", siteName: "Bee to Me", images: [{
|
||||
url: "http://img.b2bpic.net/free-photo/pink-tiny-roses-close-up_1304-4048.jpg", alt: "Bee to Me premium floral arrangement"
|
||||
}]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Bee to Me | Sustainable Floral Arrangements", description: "Handcrafted flowers that celebrate nature's pollinators. Eco-friendly, locally-sourced, and beautifully designed.", images: ["http://img.b2bpic.net/free-photo/pink-tiny-roses-close-up_1304-4048.jpg"]
|
||||
}
|
||||
};
|
||||
title: "Elegant Restaurant", description: "Experience fine dining at its finest"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${poppins.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1414,7 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||
@@ -41,7 +41,7 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
<HeroSplitDualMedia
|
||||
title="Welcome to Culinary Excellence"
|
||||
description="Experience fine dining at its finest. Our restaurant celebrates elegant cuisine with lavender-blue accents and an ambiance of refined sophistication. Discover seasonal menus crafted by award-winning chefs."
|
||||
tag="Fine Dining"
|
||||
@@ -51,28 +51,10 @@ export default function LandingPage() {
|
||||
{ text: "View Menu", href: "products" },
|
||||
{ text: "Reserve Table", href: "contact" }
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/pink-tiny-roses-close-up_1304-4048.jpg", imageAlt: "Elegant plated fine dining dish"
|
||||
},
|
||||
{
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/bridal-bouquet-lies-wooden-surface_8353-9652.jpg", imageAlt: "Restaurant ambiance and elegant settings"
|
||||
},
|
||||
{
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bunch-flowers-wooden-background-horizontal-view-from_1220-1133.jpg", imageAlt: "Chef's signature creation"
|
||||
},
|
||||
{
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-flowers_23-2149247537.jpg?_wi=1", imageAlt: "Dining experience showcase"
|
||||
},
|
||||
{
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/close-up-tiny-spring-flower-bouquet_23-2148075324.jpg", imageAlt: "Artistic plating and presentation"
|
||||
},
|
||||
{
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/luxury-wedding-catering-banquet-outdoor_624325-1790.jpg", imageAlt: "Special event dining experience"
|
||||
}
|
||||
]}
|
||||
autoPlay={true}
|
||||
autoPlayInterval={4000}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/pink-tiny-roses-close-up_1304-4048.jpg"
|
||||
imageAlt="Elegant plated fine dining dish"
|
||||
videoSrc=""
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -180,13 +162,13 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "15+", description: "Years of Culinary Excellence"
|
||||
id: "1", value: "15+", title: "Years", description: "Years of Culinary Excellence"
|
||||
},
|
||||
{
|
||||
id: "2", value: "10K+", description: "Satisfied Guests Annually"
|
||||
id: "2", value: "10K+", title: "Guests", description: "Satisfied Guests Annually"
|
||||
},
|
||||
{
|
||||
id: "3", value: "98%", description: "Guest Satisfaction Rating"
|
||||
id: "3", value: "98%", title: "Rating", description: "Guest Satisfaction Rating"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -244,26 +226,26 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{ label: "Menu", href: "#products" },
|
||||
{ label: "Featured Dishes", href: "#products" },
|
||||
{ label: "Menu", href: "products" },
|
||||
{ label: "Featured Dishes", href: "products" },
|
||||
{ label: "Wine Selection", href: "#" },
|
||||
{ label: "Catering", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Our Story", href: "about" },
|
||||
{ label: "Our Chef", href: "#" },
|
||||
{ label: "Culinary Philosophy", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Reservations", href: "#contact" },
|
||||
{ label: "Reservations", href: "contact" },
|
||||
{ label: "Hours & Location", href: "#" },
|
||||
{ label: "Private Events", href: "#" },
|
||||
{ label: "Contact Us", href: "#contact" }
|
||||
{ label: "Contact Us", href: "contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user