6 Commits

Author SHA1 Message Date
93aa4c01df Merge version_2 into main
Merge version_2 into main
2026-03-05 08:34:38 +00:00
f3f5fde01b Update src/app/layout.tsx 2026-03-05 08:34:34 +00:00
eb70ff3175 Update src/app/globals.css 2026-03-05 08:34:33 +00:00
63d35ee33d Merge version_1 into main
Merge version_1 into main
2026-03-05 08:33:23 +00:00
35d2a35d9c Merge version_1 into main
Merge version_1 into main
2026-03-05 08:32:33 +00:00
2334e9dde7 Merge version_1 into main
Merge version_1 into main
2026-03-05 08:31:29 +00:00
2 changed files with 84 additions and 51 deletions

View File

@@ -1,5 +1,75 @@
@import "tailwindcss";
@import "./styles/variables.css";
@import "./styles/theme.css";
@import "./styles/utilities.css";
@import "./styles/base.css";
@layer base {
html {
scroll-behavior: smooth;
}
body {
background-color: var(--background);
color: var(--foreground);
transition: background-color 0.3s ease, color 0.3s ease;
}
}
@layer utilities {
.mask-fade-top {
-webkit-mask-image: linear-gradient(
to bottom,
transparent 0%,
black 15%,
black 100%
);
mask-image: linear-gradient(
to bottom,
transparent 0%,
black 15%,
black 100%
);
}
.mask-fade-top-long {
-webkit-mask-image: linear-gradient(
to bottom,
transparent 0%,
black 35%,
black 100%
);
mask-image: linear-gradient(
to bottom,
transparent 0%,
black 35%,
black 100%
);
}
.mask-fade-bottom {
-webkit-mask-image: linear-gradient(
to bottom,
black 0%,
black 65%,
transparent 100%
);
mask-image: linear-gradient(
to bottom,
black 0%,
black 65%,
transparent 100%
);
}
.mask-fade-sides {
-webkit-mask-image: linear-gradient(
to right,
transparent 0%,
black 10%,
black 90%,
transparent 100%
);
mask-image: linear-gradient(
to right,
transparent 0%,
black 10%,
black 90%,
transparent 100%
);
}
}

View File

@@ -1,59 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "La Café - Specialty Coffee & Community", description: "Experience artisan specialty coffee at La Café. Premium single-origin beans, expert baristas, and a welcoming community space. Visit us today.", keywords: "specialty coffee, café, espresso, barista, single-origin coffee, community space", metadataBase: new URL("https://lacafe.com"),
alternates: {
canonical: "https://lacafe.com"
},
openGraph: {
title: "La Café - Specialty Coffee Experience", description: "Discover handcrafted coffee and community at La Café", url: "https://lacafe.com", siteName: "La Café", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/barista-work-coffee-shop_158595-2333.jpg", alt: "La Café specialty coffee"
}
]
},
twitter: {
card: "summary_large_image", title: "La Café - Your Perfect Cup", description: "Experience specialty coffee at its finest", images: ["http://img.b2bpic.net/free-photo/barista-work-coffee-shop_158595-2333.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "La Café - Specialty Coffee", description: "Experience the art of specialty coffee crafted with passion and precision."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}