Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2fbe912683 | |||
| 2d12b371b4 | |||
| 3cfab95470 | |||
| 6ec713a240 |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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 (
|
||||
@@ -97,7 +97,7 @@ export default function LandingPage() {
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
title="Best Sellers & Trending"
|
||||
description="Δημοφιλή προϊόντα που αγαπούν οι πελάτες μας. Ανακαλύψτε τα κορυφαία bestsellers και τις νέες αφίξεις."
|
||||
description="Δημοφιλά προϊόντα που αγαπούν οι πελάτες μας. Ανακαλύψτε τα κορυφαία bestsellers και τις νέες αφίξεις."
|
||||
tag="Top Picks"
|
||||
tagIcon={Flame}
|
||||
products={[
|
||||
|
||||
Reference in New Issue
Block a user