13 Commits

Author SHA1 Message Date
493c1da29e Update src/app/styles/variables.css 2026-03-05 02:16:08 +00:00
4f8d53eaf8 Update src/app/styles/base.css 2026-03-05 02:16:07 +00:00
9ac9bbbfc9 Update src/app/page.tsx 2026-03-05 02:16:07 +00:00
cd1580462c Update src/app/layout.tsx 2026-03-05 02:16:06 +00:00
595376ad5e Merge version_2 into main
Merge version_2 into main
2026-03-05 02:06:22 +00:00
b9e2653c2b Update src/app/page.tsx 2026-03-05 02:06:12 +00:00
6569dbc239 Merge version_2 into main
Merge version_2 into main
2026-03-05 02:05:36 +00:00
2709cb2aed Update src/app/page.tsx 2026-03-05 02:05:32 +00:00
c0d7ecb561 Update src/app/layout.tsx 2026-03-05 02:05:32 +00:00
0b7d79d960 Merge version_1 into main
Merge version_1 into main
2026-03-05 02:00:02 +00:00
6439a1d79d Merge version_1 into main
Merge version_1 into main
2026-03-05 01:58:51 +00:00
bf91960058 Merge version_1 into main
Merge version_1 into main
2026-03-05 01:57:37 +00:00
e4acf6a046 Merge version_1 into main
Merge version_1 into main
2026-03-05 01:56:29 +00:00
4 changed files with 67 additions and 97 deletions

View File

@@ -1,67 +1,27 @@
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 { DM_Sans } from "next/font/google";
import Tag from "@/tag/Tag"; import { Inter } from "next/font/google";
const publicSans = Public_Sans({ const dmSans = DM_Sans({
variable: "--font-public-sans", variable: "--font-dm-sans", subsets: ["latin"],
subsets: ["latin"],
}); });
const inter = Inter({ const inter = Inter({
variable: "--font-inter", variable: "--font-inter", subsets: ["latin"],
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 className={`${dmSans.variable} ${inter.variable}`}>{children}
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1429,7 +1389,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -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";
@@ -14,23 +14,23 @@ import { Coffee, Leaf, Heart, Utensils, Star, Camera, Users, MapPin } from "luci
export default function HomePage() { export default function HomePage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="icon-arrow" defaultButtonVariant="directional-hover"
defaultTextAnimation="background-highlight" defaultTextAnimation="reveal-blur"
borderRadius="pill" borderRadius="rounded"
contentWidth="small" contentWidth="medium"
sizing="large" sizing="mediumLargeSizeLargeTitles"
background="circleGradient" background="aurora"
cardStyle="subtle-shadow" cardStyle="glass-depth"
primaryButtonStyle="diagonal-gradient" primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow" secondaryButtonStyle="glass"
headingFontWeight="bold" headingFontWeight="bold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<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: "sparkles-gradient" }}
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}
@@ -81,8 +92,8 @@ export default function HomePage() {
tagIcon={Utensils} tagIcon={Utensils}
tagAnimation="blur-reveal" tagAnimation="blur-reveal"
textboxLayout="default" textboxLayout="default"
gridVariant="uniform-all-items-equal" gridVariant="bento-grid"
animationType="slide-up" animationType="scale-rotate"
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ {
@@ -117,7 +128,7 @@ export default function HomePage() {
tagIcon={Star} tagIcon={Star}
tagAnimation="blur-reveal" tagAnimation="blur-reveal"
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="blur-reveal"
useInvertedBackground={false} useInvertedBackground={false}
/> />
</div> </div>
@@ -130,22 +141,22 @@ export default function HomePage() {
tagIcon={Camera} tagIcon={Camera}
tagAnimation="slide-up" tagAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
gridVariant="uniform-all-items-equal" gridVariant="bento-grid"
animationType="slide-up" animationType="depth-3d"
useInvertedBackground={false} useInvertedBackground={false}
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>
@@ -159,7 +170,7 @@ export default function HomePage() {
tagAnimation="slide-up" tagAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
animationType="slide-up" animationType="scale-rotate"
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ testimonials={[
{ {
@@ -186,11 +197,11 @@ 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"
background={{ variant: "plain" }} background={{ variant: "gradient-bars" }}
useInvertedBackground={false} useInvertedBackground={false}
/> />
</div> </div>
@@ -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>
); );
} }

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-inter), sans-serif; font-family: var(--font-dm-sans), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-public-sans), sans-serif; font-family: var(--font-dm-sans), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #ffffff; --background: #010912;
--card: #f9f9f9; --card: #152840;
--foreground: #000f06e6; --foreground: #e6f0ff;
--primary-cta: #0a7039; --primary-cta: #cee7ff;
--primary-cta-text: #ffffff; --primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9; --secondary-cta: #0e1a29;
--secondary-cta-text: #000f06e6; --secondary-cta-text: #000f06e6;
--accent: #e2e2e2; --accent: #3f5c79;
--background-accent: #c4c4c4; --background-accent: #004a93;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);