Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 11:11:12 +00:00
2 changed files with 11 additions and 41 deletions

View File

@@ -1,52 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
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: "BrewCraft | Premium Specialty Coffee Roasted Fresh", description: "Discover BrewCraft's artisan specialty coffee. Single-origin beans, signature blends, and cold brew. Fresh roasted daily. Order online or visit our cafe.", keywords: "specialty coffee, artisan roast, single-origin coffee, cold brew, cafe, coffee subscription, specialty beans", metadataBase: new URL("https://brewcraft.coffee"),
alternates: {
canonical: "https://brewcraft.coffee"},
openGraph: {
title: "BrewCraft | Premium Specialty Coffee", description: "Experience the finest specialty coffee roasted in-house. Single-origin beans, signature blends, and cold brew.", url: "https://brewcraft.coffee", siteName: "BrewCraft Coffee", type: "website"},
twitter: {
card: "summary_large_image", title: "BrewCraft | Premium Specialty Coffee", description: "Discover our artisan specialty coffee roasted fresh daily."},
robots: {
index: true,
follow: true,
},
title: 'BrewCraft Coffee',
description: 'Experience the finest specialty coffee roasted in-house',
};
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: `
@@ -1414,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -200,6 +200,7 @@ export default function LandingPage() {
tagIcon={Handshake}
textboxLayout="default"
names={["EthiopianHarvest", "ColombianDirect", "BrazilianRoasters", "KenyanPremium", "VietnamSpecialty", "IndianArabica", "PanamaGeisha", "PeruvianOrigin"]}
logos={["https://images.unsplash.com/photo-1599474227971-b6ebb1f38c4b?w=120&h=60&fit=crop", "https://images.unsplash.com/photo-1599474227235-12bb91b3b9b8?w=120&h=60&fit=crop", "https://images.unsplash.com/photo-1599474227371-e9d8d8c4b8f5?w=120&h=60&fit=crop", "https://images.unsplash.com/photo-1599474227468-3e9d7b8c4f5a?w=120&h=60&fit=crop", "https://images.unsplash.com/photo-1599474227235-12bb91b3b9b8?w=120&h=60&fit=crop", "https://images.unsplash.com/photo-1599474227371-e9d8d8c4b8f5?w=120&h=60&fit=crop", "https://images.unsplash.com/photo-1599474227468-3e9d7b8c4f5a?w=120&h=60&fit=crop", "https://images.unsplash.com/photo-1599474227235-12bb91b3b9b8?w=120&h=60&fit=crop"]}
useInvertedBackground={false}
speed={40}
showCard={true}