Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-06 13:51:35 +00:00
2 changed files with 14 additions and 38 deletions

View File

@@ -1,52 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "SPORT CAFE | Αθλητικά Ρούχα & Sneakers Βριλήσσια", description: "Ανακαλύψτε τα κορυφαία brands αθλητικής μόδας και premium sneakers στη SPORT CAFE. 4.2★ Google Rating. Γρήγορη διανομή & αγορές online.", keywords: "αθλητικά ρούχα Βριλήσσια, sneakers Βριλήσσια, κατάστημα αθλητικών, athletic wear, sportswear Athens", metadataBase: new URL("https://sportcafe.gr"),
alternates: {
canonical: "https://sportcafe.gr"},
openGraph: {
title: "SPORT CAFE | Αθλητικά Ρούχα & Sneakers", description: "Κορυφαία brands αθλητικής μόδας και performance gear. Βριλήσσια, Αθήνα.", url: "https://sportcafe.gr", siteName: "SPORT CAFE", type: "website"},
twitter: {
card: "summary_large_image", title: "SPORT CAFE | Αθλητικά Ρούχα", description: "Premium sneakers & athletic wear. Rated 4.2★ - Βριλήσσια"},
robots: {
index: true,
follow: true,
},
};
title: "SPORT CAFE", description: "Τα κορυφαία brands αθλητικής μόδας στα Βριλήσσια"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="el">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -9,7 +9,7 @@ import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import ContactText from "@/components/sections/contact/ContactText";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Zap, Sparkles, Flame, Rocket, Wind, Shield, Award, Heart, Home, ShoppingBag, Truck, MapPin, CheckCircle } from "lucide-react";
import { Zap, Sparkles, Flame, Rocket, Wind, Shield, Award, Heart, Home, ShoppingBag, Truck, MapPin, CheckCircle, Package } from "lucide-react";
export default function LandingPage() {
return (
@@ -65,6 +65,7 @@ export default function LandingPage() {
{ title: "Google Rating", values: [4.2, 4.3, 4.2], description: "Από 613 κριτικές" },
{ title: "Χρόνια Εμπειρίας", values: [15, 16, 15], valueSuffix: "+", description: "Τοπικής παρουσίας" },
{ title: "Ικανοποίηση", values: [98, 99, 98], valueSuffix: "%", description: "Πελατών" },
{ title: "Products In Stock", values: [500, 520, 510], description: "Διαθέσιμα προϊόντα" },
],
listTitle: "Υπηρεσίες", listItems: [
{ icon: Truck, title: "Γρήγορη Διανομή", status: "Διαθέσιμη" },