Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b9e2653c2b | |||
| 2709cb2aed | |||
| c0d7ecb561 | |||
| 0b7d79d960 | |||
| 6439a1d79d | |||
| bf91960058 | |||
| e4acf6a046 |
@@ -1,67 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Public_Sans } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
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 = {
|
export const metadata: Metadata = {
|
||||||
title: "Aesthetic Cafe | Where Every Sip Becomes a Moment",
|
title: "Aesthetic Cafe", description: "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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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>{children}
|
||||||
<body
|
|
||||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1429,7 +1379,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
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 TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||||
import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
||||||
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
||||||
@@ -29,8 +29,8 @@ export default function HomePage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Menu", id: "/menu" },
|
{ name: "Menu", id: "#menu" },
|
||||||
{ name: "Gallery", id: "/gallery" },
|
{ name: "Gallery", id: "#gallery" },
|
||||||
{ name: "Locations", id: "/locations" },
|
{ name: "Locations", id: "/locations" },
|
||||||
{ name: "Events", id: "/events" },
|
{ name: "Events", id: "/events" },
|
||||||
]}
|
]}
|
||||||
@@ -40,20 +40,31 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardScroll
|
<HeroBillboardGallery
|
||||||
title="Where Every Sip Becomes a Moment"
|
title="Where Every Sip Becomes a Moment"
|
||||||
description="Immerse yourself in our carefully curated aesthetic cafe. Handcrafted drinks, Instagramperfect spaces, and unforgettable vibes await."
|
description="Immerse yourself in our carefully curated aesthetic cafe. Handcrafted drinks, Instagram-perfect spaces, and unforgettable vibes await."
|
||||||
tag="Welcome to Aesthetic Cafe"
|
tag="Welcome to Aesthetic Cafe"
|
||||||
tagIcon={Coffee}
|
tagIcon={Coffee}
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/confident-young-indian-man-black-shirt-standing-cafe_627829-5462.jpg"
|
mediaItems={[
|
||||||
imageAlt="Aesthetic cafe interior with warm lighting and cozy seating"
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/confident-young-indian-man-black-shirt-standing-cafe_627829-5462.jpg", imageAlt: "Aesthetic cafe interior with warm lighting and cozy seating"},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-male-pouring-milk-into-glass-coffee_181624-1769.jpg?_wi=1", imageAlt: "Coffee preparation and cafe ambiance"},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/cozy-cafe_1098-13854.jpg?_wi=1", imageAlt: "Cozy cafe interior seating"},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/ceramic-cups-coffee-machine_23-2147830564.jpg?_wi=1", imageAlt: "Coffee counter and espresso machine"},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/coffee-with-heart-pattern-wooden-background_1232-2090.jpg?_wi=1", imageAlt: "Latte art with heart pattern"},
|
||||||
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Explore Our World", href: "/menu" },
|
{ text: "Explore Our World", href: "#menu" },
|
||||||
{ text: "Book a Table", href: "/contact" },
|
{ text: "Book a Table", href: "#cta-section" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -66,7 +77,7 @@ export default function HomePage() {
|
|||||||
description="Founded by coffee enthusiasts"
|
description="Founded by coffee enthusiasts"
|
||||||
subdescription="Aesthetic Cafe - Est. 2021"
|
subdescription="Aesthetic Cafe - Est. 2021"
|
||||||
icon={Heart}
|
icon={Heart}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/vertical-shot-male-pouring-milk-into-glass-coffee_181624-1769.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/vertical-shot-male-pouring-milk-into-glass-coffee_181624-1769.jpg?_wi=2"
|
||||||
imageAlt="Coffee preparation and cafe ambiance"
|
imageAlt="Coffee preparation and cafe ambiance"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -136,16 +147,16 @@ export default function HomePage() {
|
|||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Cozy Corner", role: "Seating", company: "Main Lounge", rating: 5,
|
id: "1", name: "Cozy Corner", role: "Seating", company: "Main Lounge", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cozy-cafe_1098-13854.jpg", imageAlt: "Cozy cafe interior seating"},
|
imageSrc: "http://img.b2bpic.net/free-photo/cozy-cafe_1098-13854.jpg?_wi=2", imageAlt: "Cozy cafe interior seating"},
|
||||||
{
|
{
|
||||||
id: "2", name: "Coffee Counter", role: "Service", company: "Main Bar", rating: 5,
|
id: "2", name: "Coffee Counter", role: "Service", company: "Main Bar", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/ceramic-cups-coffee-machine_23-2147830564.jpg", imageAlt: "Coffee counter and espresso machine"},
|
imageSrc: "http://img.b2bpic.net/free-photo/ceramic-cups-coffee-machine_23-2147830564.jpg?_wi=2", imageAlt: "Coffee counter and espresso machine"},
|
||||||
{
|
{
|
||||||
id: "3", name: "Storefront", role: "Entrance", company: "Street Presence", rating: 5,
|
id: "3", name: "Storefront", role: "Entrance", company: "Street Presence", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-redhead-girl-drinks-coffee-sitting-near-coffee-shop-relaxing-after-riding-skateboard_613910-18845.jpg", imageAlt: "Cafe storefront view"},
|
imageSrc: "http://img.b2bpic.net/free-photo/young-redhead-girl-drinks-coffee-sitting-near-coffee-shop-relaxing-after-riding-skateboard_613910-18845.jpg", imageAlt: "Cafe storefront view"},
|
||||||
{
|
{
|
||||||
id: "4", name: "Coffee Artistry", role: "Detail", company: "Craftsmanship", rating: 5,
|
id: "4", name: "Coffee Artistry", role: "Detail", company: "Craftsmanship", rating: 5,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-with-heart-pattern-wooden-background_1232-2090.jpg", imageAlt: "Latte art with heart pattern"},
|
imageSrc: "http://img.b2bpic.net/free-photo/coffee-with-heart-pattern-wooden-background_1232-2090.jpg?_wi=2", imageAlt: "Latte art with heart pattern"},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -186,7 +197,7 @@ export default function HomePage() {
|
|||||||
title="Reserve Your Perfect Moment"
|
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."
|
description="Book a table at our cafe and immerse yourself in an unforgettable aesthetic experience with world-class coffee and ambiance."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Make a Reservation", href: "/contact" },
|
{ text: "Make a Reservation", href: "#contact" },
|
||||||
{ text: "View Locations", href: "/locations" },
|
{ text: "View Locations", href: "/locations" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -202,16 +213,16 @@ export default function HomePage() {
|
|||||||
{
|
{
|
||||||
title: "Explore", items: [
|
title: "Explore", items: [
|
||||||
{ label: "Home", href: "/" },
|
{ label: "Home", href: "/" },
|
||||||
{ label: "Menu", href: "/menu" },
|
{ label: "Menu", href: "#menu" },
|
||||||
{ label: "Gallery", href: "/gallery" },
|
{ label: "Gallery", href: "#gallery" },
|
||||||
{ label: "About", href: "/about" },
|
{ label: "About", href: "#about" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Connect", items: [
|
title: "Connect", items: [
|
||||||
{ label: "Locations", href: "/locations" },
|
{ label: "Locations", href: "/locations" },
|
||||||
{ label: "Events", href: "/events" },
|
{ label: "Events", href: "/events" },
|
||||||
{ label: "Contact", href: "/contact" },
|
{ label: "Contact", href: "#cta-section" },
|
||||||
{ label: "Blog", href: "/blog" },
|
{ label: "Blog", href: "/blog" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@@ -236,4 +247,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user