diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 3fd38b7..0810e9f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,67 +1,17 @@
import type { Metadata } from "next";
-import { Public_Sans } from "next/font/google";
-import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const publicSans = Public_Sans({
- variable: "--font-public-sans",
- subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
export const metadata: Metadata = {
- title: "Aesthetic Cafe | Where Every Sip Becomes a Moment",
- description: "Experience the ultimate Instagram-worthy cafe. Handcrafted specialty drinks, artisan pastries, and beautifully designed spaces perfect for remote work or celebrations.",
- keywords: "aesthetic cafe, specialty coffee, artisan pastries, Instagram cafe, remote work space, cafe reservations, coffee culture, instagrammable spaces",
- metadataBase: new URL("https://aestheticcafe.com"),
- alternates: {
- canonical: "https://aestheticcafe.com",
- },
- openGraph: {
- title: "Aesthetic Cafe | Where Every Sip Becomes a Moment",
- description: "Discover our carefully curated aesthetic cafe with handcrafted drinks, Instagramperfect spaces, and unforgettable vibes.",
- url: "https://aestheticcafe.com",
- siteName: "Aesthetic Cafe",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/confident-young-indian-man-black-shirt-standing-cafe_627829-5462.jpg",
- alt: "Aesthetic Cafe interior with warm lighting",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Aesthetic Cafe | Where Every Sip Becomes a Moment",
- description: "Experience handcrafted coffee and artisan pastries in our beautifully designed aesthetic spaces.",
- images: ["http://img.b2bpic.net/free-photo/confident-young-indian-man-black-shirt-standing-cafe_627829-5462.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Aesthetic Cafe", description: "Where Every Sip Becomes a Moment"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index c9618da..90b8d45 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
-import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
+import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
import ProductCardFour from "@/components/sections/product/ProductCardFour";
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
@@ -29,8 +29,8 @@ export default function HomePage() {
-
@@ -186,7 +197,7 @@ export default function HomePage() {
title="Reserve Your Perfect Moment"
description="Book a table at our cafe and immerse yourself in an unforgettable aesthetic experience with world-class coffee and ambiance."
buttons={[
- { text: "Make a Reservation", href: "/contact" },
+ { text: "Make a Reservation", href: "#contact" },
{ text: "View Locations", href: "/locations" },
]}
buttonAnimation="slide-up"
@@ -202,16 +213,16 @@ export default function HomePage() {
{
title: "Explore", items: [
{ label: "Home", href: "/" },
- { label: "Menu", href: "/menu" },
- { label: "Gallery", href: "/gallery" },
- { label: "About", href: "/about" },
+ { label: "Menu", href: "#menu" },
+ { label: "Gallery", href: "#gallery" },
+ { label: "About", href: "#about" },
],
},
{
title: "Connect", items: [
{ label: "Locations", href: "/locations" },
{ label: "Events", href: "/events" },
- { label: "Contact", href: "/contact" },
+ { label: "Contact", href: "#cta-section" },
{ label: "Blog", href: "/blog" },
],
},
@@ -236,4 +247,4 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}