3 Commits

Author SHA1 Message Date
0fad6ae277 Update src/app/page.tsx 2026-03-03 21:24:46 +00:00
28f955809c Update src/app/layout.tsx 2026-03-03 21:24:45 +00:00
86cbaa964a Merge version_1 into main
Merge version_1 into main
2026-03-03 20:59:30 +00:00
2 changed files with 9 additions and 45 deletions

View File

@@ -1,56 +1,20 @@
import type { Metadata } from "next";
import { Inter_Tight } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "KingAuto - Autoservis Praha 10 Vršovice | Opravy vozidel", description: "Profesionální autoservis KingAuto v Praze 10. Mechanické opravy, diagnostika, údržba. Kvalita, férové ceny, osobní přístup. Tel: +420 722 440 699", keywords: "autoservis Praha 10, autoservis Vršovice, oprava auta Praha, servis vozidel, mechanik Praha", metadataBase: new URL("https://kingauto.cz"),
alternates: {
canonical: "https://kingauto.cz"
},
openGraph: {
title: "KingAuto - Profesionální autoservis v Praze 10", description: "Rychlé opravy, férové ceny a osobní přístup. Objednejte si servis online nebo zavolejte.", url: "https://kingauto.cz", siteName: "KingAuto", type: "website"
},
twitter: {
card: "summary_large_image", title: "KingAuto - Autoservis Praha 10", description: "Profesionální servis a opravy vozidel - Praha 10 Vršovice"
},
robots: {
index: true,
follow: true
}
};
title: "KingAuto - Profesionální autoservis Praha 10", description: "Autoservis KingAuto v Praze 10 - Vršovice. Kvalitní opravy, diagnostika a servis vozidel všech značek."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${interTight.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -8,7 +8,7 @@ import FeatureCardThree from '@/components/sections/feature/featureCardThree/Fea
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import { Award, CheckCircle, Clock, Eye, Heart, MapPin, Star, ThumbsUp, TrendingUp, Users, Wrench, Zap, Briefcase } from 'lucide-react';
import { Award, CheckCircle, Clock, Eye, Heart, MapPin, Star, ThumbsUp, TrendingUp, Users, Wrench, Zap, Briefcase, Shield } from 'lucide-react';
export default function LandingPage() {
return (
@@ -43,6 +43,7 @@ export default function LandingPage() {
title="Profesionální autoservis v Praze 10 Vršovice"
description="Rychlé opravy, férové ceny a osobní přístup ke každému zákazníkovi. Servisujeme vozidla všech značek."
tag="KingAuto"
tagIcon={Shield}
imageSrc="http://img.b2bpic.net/free-photo/luxury-white-car-employee-blue-colored-uniform-works-automobile-salon_146671-16621.jpg"
imageAlt="Profesionální autoservis KingAuto"
textPosition="bottom-left"