Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 340117c2e1 | |||
| a9d6cff8a6 | |||
| 8472c2d0ff | |||
| b8a010cf91 | |||
| 58caa3a1fe | |||
| ca537f65ff | |||
| d7fa071f48 | |||
| 09bc8be460 |
@@ -1,75 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import { Source_Sans_3 } from "next/font/google";
|
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter",
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const sourceSans3 = Source_Sans_3({
|
|
||||||
variable: "--font-source-sans-3",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "KY Auto | Trusted Car Repair & Servicing in Singapore",
|
title: "KY Auto - Professional Car Repair & Servicing in Singapore", description: "Trusted automotive repair and servicing experts with 15+ years of experience. Certified technicians, genuine parts, and 100% customer satisfaction."
|
||||||
description: "Professional automotive repair and car servicing in Singapore. Expert technicians, genuine parts, 100% satisfaction guaranteed. Call now for engine repair, aircon service, gearbox repair and more.",
|
|
||||||
keywords: "car repair Singapore, auto service near me, engine repair, car maintenance, vehicle servicing, accident repair, aircon service",
|
|
||||||
metadataBase: new URL("https://kyauto.sg"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://kyauto.sg",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "KY Auto | Expert Car Repair & Servicing",
|
|
||||||
description: "Professional automotive repair and servicing with 15+ years experience. Certified technicians, fair pricing, guaranteed quality.",
|
|
||||||
url: "https://kyauto.sg",
|
|
||||||
siteName: "KY Auto",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/different-type-tools-especially-wrenches-are-hanging-wall-workshop_613910-15268.jpg",
|
|
||||||
alt: "KY Auto Professional Workshop",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
type: "website",
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "KY Auto | Trusted Car Repair & Servicing",
|
|
||||||
description: "Expert automotive repair services in Singapore. Call +65 6123 4567 for professional car servicing.",
|
|
||||||
images: [
|
|
||||||
"http://img.b2bpic.net/free-photo/different-type-tools-especially-wrenches-are-hanging-wall-workshop_613910-15268.jpg",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1438,7 +1391,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@ import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwent
|
|||||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||||
import { Award, CheckCircle, Star, ArrowRight, Phone, Sparkles } from "lucide-react";
|
import { Award, CheckCircle, Star, ArrowRight, Phone, Sparkles, Zap } from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
return (
|
return (
|
||||||
@@ -37,7 +37,8 @@ export default function HomePage() {
|
|||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Call Now", href: "tel:+6561234567"}}
|
text: "Call Now", href: "tel:+6561234567"
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -47,12 +48,15 @@ export default function HomePage() {
|
|||||||
logoText="KY AUTO"
|
logoText="KY AUTO"
|
||||||
description="Trusted Car Repair & Servicing Experts. 15+ years serving Singapore with certified technicians, genuine parts, and 100% customer satisfaction. Your vehicle deserves expert care."
|
description="Trusted Car Repair & Servicing Experts. 15+ years serving Singapore with certified technicians, genuine parts, and 100% customer satisfaction. Your vehicle deserves expert care."
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient"}}
|
variant: "radial-gradient"
|
||||||
|
}}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now: +65 6123 4567", href: "tel:+6561234567"},
|
text: "Get Quick Repair", href: "tel:+6561234567"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: "Book Service", href: "/services"},
|
text: "Book Service", href: "/services"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
layoutOrder="default"
|
layoutOrder="default"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/different-type-tools-especially-wrenches-are-hanging-wall-workshop_613910-15268.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/different-type-tools-especially-wrenches-are-hanging-wall-workshop_613910-15268.jpg"
|
||||||
@@ -78,6 +82,9 @@ export default function HomePage() {
|
|||||||
{
|
{
|
||||||
id: "3", value: "100", title: "Satisfaction", description: "customer satisfaction rate", icon: Star,
|
id: "3", value: "100", title: "Satisfaction", description: "customer satisfaction rate", icon: Star,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: "4", value: "500", title: "Services", description: "completed with excellence", icon: Zap,
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -95,22 +102,28 @@ export default function HomePage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Engine Diagnostics", description: "Advanced computer diagnostics to identify any engine issues quickly and accurately", imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine-with-help-laptop_1170-1531.jpg?_wi=1", imageAlt: "Engine diagnostics service", buttonIcon: ArrowRight,
|
title: "Engine Diagnostics", description: "Advanced computer diagnostics to identify any engine issues quickly and accurately", imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine-with-help-laptop_1170-1531.jpg?_wi=1", imageAlt: "Engine diagnostics service", buttonIcon: ArrowRight,
|
||||||
buttonHref: "/services"},
|
buttonHref: "/services"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Gearbox Repair", description: "Expert gearbox and transmission repair services with genuine parts warranty", imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine_1170-1402.jpg?_wi=1", imageAlt: "Gearbox repair service", buttonIcon: ArrowRight,
|
title: "Gearbox Repair", description: "Expert gearbox and transmission repair services with genuine parts warranty", imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine_1170-1402.jpg?_wi=1", imageAlt: "Gearbox repair service", buttonIcon: ArrowRight,
|
||||||
buttonHref: "/services"},
|
buttonHref: "/services"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Car Aircon Service", description: "Complete air conditioning servicing and maintenance for optimal cooling", imageSrc: "http://img.b2bpic.net/free-photo/mechanic-checking-car_329181-11880.jpg?_wi=1", imageAlt: "Car aircon servicing", buttonIcon: ArrowRight,
|
title: "Car Aircon Service", description: "Complete air conditioning servicing and maintenance for optimal cooling", imageSrc: "http://img.b2bpic.net/free-photo/mechanic-checking-car_329181-11880.jpg?_wi=1", imageAlt: "Car aircon servicing", buttonIcon: ArrowRight,
|
||||||
buttonHref: "/services"},
|
buttonHref: "/services"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Battery Replacement", description: "Quality battery replacement with professional installation and testing", imageSrc: "http://img.b2bpic.net/free-photo/hand-mechanic-holding-tools_1170-1411.jpg?_wi=1", imageAlt: "Battery replacement service", buttonIcon: ArrowRight,
|
title: "Battery Replacement", description: "Quality battery replacement with professional installation and testing", imageSrc: "http://img.b2bpic.net/free-photo/hand-mechanic-holding-tools_1170-1411.jpg?_wi=1", imageAlt: "Battery replacement service", buttonIcon: ArrowRight,
|
||||||
buttonHref: "/services"},
|
buttonHref: "/services"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Accident Repair", description: "Professional accident repair and body work with insurance coordination", imageSrc: "http://img.b2bpic.net/free-photo/car-detailing-concept-man-face-mask-with-orbital-polisher-repair-shop-polishing-orange-suv-car_627829-12610.jpg?_wi=1", imageAlt: "Accident repair service", buttonIcon: ArrowRight,
|
title: "Accident Repair", description: "Professional accident repair and body work with insurance coordination", imageSrc: "http://img.b2bpic.net/free-photo/car-detailing-concept-man-face-mask-with-orbital-polisher-repair-shop-polishing-orange-suv-car_627829-12610.jpg?_wi=1", imageAlt: "Accident repair service", buttonIcon: ArrowRight,
|
||||||
buttonHref: "/services"},
|
buttonHref: "/services"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Routine Maintenance", description: "Regular maintenance packages to keep your vehicle running smoothly", imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11848.jpg?_wi=1", imageAlt: "Routine maintenance service", buttonIcon: ArrowRight,
|
title: "Routine Maintenance", description: "Regular maintenance packages to keep your vehicle running smoothly", imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11848.jpg?_wi=1", imageAlt: "Routine maintenance service", buttonIcon: ArrowRight,
|
||||||
buttonHref: "/services"},
|
buttonHref: "/services"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
@@ -125,22 +138,28 @@ export default function HomePage() {
|
|||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "David Tan", role: "Car Owner", testimonial: "Excellent service! The technicians were professional and thorough. My car runs perfectly now. Highly recommended.", icon: Sparkles,
|
id: "1", name: "David Tan", role: "Car Owner", testimonial: "Excellent service! The technicians were professional and thorough. My car runs perfectly now. Highly recommended.", icon: Sparkles,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-handsome-confident-middle-aged-businessman-black-background_176420-5559.jpg", imageAlt: "David Tan"},
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-handsome-confident-middle-aged-businessman-black-background_176420-5559.jpg", imageAlt: "David Tan"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Sarah Lim", role: "Regular Customer", testimonial: "Fast turnaround and fair pricing. They explained every repair clearly. Best auto workshop in the area!", icon: Sparkles,
|
id: "2", name: "Sarah Lim", role: "Regular Customer", testimonial: "Fast turnaround and fair pricing. They explained every repair clearly. Best auto workshop in the area!", icon: Sparkles,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-standing-with-crossed-arms_23-2148095775.jpg", imageAlt: "Sarah Lim"},
|
imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-standing-with-crossed-arms_23-2148095775.jpg", imageAlt: "Sarah Lim"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Michael Chen", role: "Business Owner", testimonial: "I trust KY Auto with all my company vehicles. Reliable, professional, and they always go the extra mile.", icon: Sparkles,
|
id: "3", name: "Michael Chen", role: "Business Owner", testimonial: "I trust KY Auto with all my company vehicles. Reliable, professional, and they always go the extra mile.", icon: Sparkles,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-man-showing-approval_23-2148230800.jpg", imageAlt: "Michael Chen"},
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-man-showing-approval_23-2148230800.jpg", imageAlt: "Michael Chen"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "Priya Sharma", role: "First-Time Customer", testimonial: "Very welcoming and transparent about costs. No hidden fees. Will definitely come back for maintenance.", icon: Sparkles,
|
id: "4", name: "Priya Sharma", role: "First-Time Customer", testimonial: "Very welcoming and transparent about costs. No hidden fees. Will definitely come back for maintenance.", icon: Sparkles,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-smartly-dressed-asian-woman-sitting-executive-chair-office_1098-20503.jpg", imageAlt: "Priya Sharma"},
|
imageSrc: "http://img.b2bpic.net/free-photo/confident-smartly-dressed-asian-woman-sitting-executive-chair-office_1098-20503.jpg", imageAlt: "Priya Sharma"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "5", name: "James Wong", role: "Fleet Manager", testimonial: "Perfect for fleet servicing. They handle multiple vehicles efficiently and maintain excellent documentation.", icon: Sparkles,
|
id: "5", name: "James Wong", role: "Fleet Manager", testimonial: "Perfect for fleet servicing. They handle multiple vehicles efficiently and maintain excellent documentation.", icon: Sparkles,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/caucasian-brunette-male-portrait_158595-7921.jpg", imageAlt: "James Wong"},
|
imageSrc: "http://img.b2bpic.net/free-photo/caucasian-brunette-male-portrait_158595-7921.jpg", imageAlt: "James Wong"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "6", name: "Lisa Ng", role: "Loyal Customer", testimonial: "Been bringing my car here for 5 years. Consistent quality service and genuine care for customers.", icon: Sparkles,
|
id: "6", name: "Lisa Ng", role: "Loyal Customer", testimonial: "Been bringing my car here for 5 years. Consistent quality service and genuine care for customers.", icon: Sparkles,
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-european-girl-with-charming-smile-keeps-arms-folded-wears-round-spectacles_273609-18493.jpg", imageAlt: "Lisa Ng"},
|
imageSrc: "http://img.b2bpic.net/free-photo/attractive-european-girl-with-charming-smile-keeps-arms-folded-wears-round-spectacles_273609-18493.jpg", imageAlt: "Lisa Ng"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -157,12 +176,15 @@ export default function HomePage() {
|
|||||||
description="Schedule your appointment now. Our expert technicians are ready to keep your vehicle in top condition. Quick response, fair pricing, and guaranteed quality service."
|
description="Schedule your appointment now. Our expert technicians are ready to keep your vehicle in top condition. Quick response, fair pricing, and guaranteed quality service."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now: +65 6123 4567", href: "tel:+6561234567"},
|
text: "Call Now: +65 6123 4567", href: "tel:+6561234567"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: "Book Online", href: "/services"},
|
text: "Book Online", href: "/services"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
background={{
|
background={{
|
||||||
variant: "downward-rays-animated"}}
|
variant: "downward-rays-animated"
|
||||||
|
}}
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
@@ -174,9 +196,11 @@ export default function HomePage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="KY AUTO"
|
logoText="KY AUTO"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Privacy Policy", href: "/privacy"}}
|
text: "Privacy Policy", href: "/privacy"
|
||||||
|
}}
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "Terms of Service", href: "/terms"}}
|
text: "Terms of Service", href: "/terms"
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user