diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index f43aa12..595a364 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,55 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Lato } from "next/font/google";
+import { Geist, Geist_Mono } from "next/font/google";
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 geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const lato = Lato({
- variable: "--font-lato", subsets: ["latin"],
- weight: ["100", "300", "400", "700", "900"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Coffee Theory Larnaca | Specialty Coffee & Premium Experience", description: "Discover exceptional specialty coffee at Coffee Theory in Aradippou, Larnaca. 4.7★ rated café featuring Strada coffee machine and the perfect Freddo Espresso.", keywords: "specialty coffee Larnaca, café Aradippou, Freddo Espresso, premium coffee Cyprus", openGraph: {
- title: "Coffee Theory Larnaca - Exceptional Specialty Coffee", description: "Experience premium specialty coffee crafted with precision. Visit Coffee Theory in Aradippou, Larnaca.", siteName: "Coffee Theory Larnaca", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg", alt: "Coffee Theory café interior"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Coffee Theory Larnaca - Premium Specialty Coffee", description: "Discover the finest specialty coffee experience in Larnaca", images: ["http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Coffee Theory | Premium Specialty Coffee in Larnaca", description: "Experience exceptional specialty coffee at Coffee Theory in Larnaca. Premium quality, crafted with precision and served with genuine care."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index a48ff66..d7b26c6 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -84,11 +84,14 @@ export default function LandingPage() {
textboxLayout="default"
features={[
{
- title: "Perfect Freddo Espresso", description: "One of the few places that truly knows how to craft the perfect Freddo Espresso. Our technique ensures every sip is smooth, refreshing, and expertly balanced.", imageSrc: "http://img.b2bpic.net/free-photo/coffee-preparation-concept-still-life_23-2150354580.jpg", imageAlt: "Perfectly crafted Freddo Espresso"},
+ title: "Perfect Freddo Espresso", description: "One of the few places that truly knows how to craft the perfect Freddo Espresso. Our technique ensures every sip is smooth, refreshing, and expertly balanced.", imageSrc: "http://img.b2bpic.net/free-photo/coffee-preparation-concept-still-life_23-2150354580.jpg", imageAlt: "Perfectly crafted Freddo Espresso"
+ },
{
- title: "Uncompromising Quality", description: "Our Strada coffee machine, valued at £20,000, demonstrates our commitment to quality. We invest in the best equipment to deliver exceptional coffee every single time.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-barista-wearing-mask_23-2148892846.jpg", imageAlt: "Professional Strada espresso machine setup"},
+ title: "Uncompromising Quality", description: "Our Strada coffee machine, valued at £20,000, demonstrates our commitment to quality. We invest in the best equipment to deliver exceptional coffee every single time.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-barista-wearing-mask_23-2148892846.jpg", imageAlt: "Professional Strada espresso machine setup"
+ },
{
- title: "Best Value in Town", description: "Premium specialty coffee at prices that respect your wallet. We believe exceptional quality shouldn't come with an exceptional price tag.", imageSrc: "http://img.b2bpic.net/free-vector/autumn-sale-badges-with-vintage-style_23-2147663106.jpg", imageAlt: "Affordable specialty coffee value proposition"},
+ title: "Best Value in Town", description: "Premium specialty coffee at prices that respect your wallet. We believe exceptional quality shouldn't come with an exceptional price tag.", imageSrc: "http://img.b2bpic.net/free-vector/autumn-sale-badges-with-vintage-style_23-2147663106.jpg", imageAlt: "Affordable specialty coffee value proposition"
+ },
]}
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
@@ -100,13 +103,17 @@ export default function LandingPage() {