Merge version_6 into main #4

Open
bender wants to merge 3 commits from version_6 into main
2 changed files with 25 additions and 9 deletions

View File

@@ -1,9 +1,14 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Gurman Travels - Cheap Flight Tickets & Fast Courier Services", description: "Book affordable international flight tickets and fast courier services. Lowest prices guaranteed with 24/7 customer support."};
title: "Gurman Travels | Cheap Flight Tickets & Courier Services", description: "Book international flight tickets at the lowest prices guaranteed. Fast courier services, money transfer, and travel solutions for Canada and Punjab."};
export default function RootLayout({
children,
@@ -12,8 +17,19 @@ export default function RootLayout({
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className="">
<body className={`${inter.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
`,
}}
/>
<script
dangerouslySetInnerHTML={{
@@ -1384,4 +1400,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

@@ -36,7 +36,7 @@ export default function LandingPage() {
{ name: "Quote", id: "quote" },
]}
button={{
text: "📞 Call Now", href: "tel:+1234567890"
text: "📞 088474 00729", href: "tel:08847400729"
}}
/>
</div>
@@ -50,7 +50,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
background={{ variant: "animated-grid" }}
buttons={[
{ text: "📞 Call Now", href: "tel:+1234567890" },
{ text: "📞 Call Now", href: "tel:08847400729" },
{ text: "💬 WhatsApp", href: "https://wa.me/1234567890" },
]}
buttonAnimation="slide-up"
@@ -183,7 +183,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<FeatureCardSix
title="Contact Us - Let's Connect"
description="Reach out through any channel that works best for you. We're here to help!\n\n📍 Business Address: Gurman Travels, 30ft Rd, near BUS STAND, S.A.S Nagar, Sri Muktsar Sahib, Muktsar Rural, Punjab 152026"
description="Reach out through any channel that works best for you. We're here to help!"
tag="Get In Touch"
tagIcon={Phone}
tagAnimation="slide-up"
@@ -192,7 +192,7 @@ export default function LandingPage() {
features={[
{
id: 1,
title: "📞 Call Us Anytime", description: "Direct phone support. Call now for instant assistance with booking or inquiries.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-working-call-center_23-2149288180.jpg"
title: "📞 Call Us Anytime", description: "Direct phone support. Call 088474 00729 for instant assistance with booking or inquiries.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-working-call-center_23-2149288180.jpg"
},
{
id: 2,
@@ -211,7 +211,7 @@ export default function LandingPage() {
logoText="Gurman Travels"
copyrightText="© 2025 Gurman Travels | Travel Agency & Courier Services. All rights reserved."
socialLinks={[
{ icon: Phone, href: "tel:+1234567890", ariaLabel: "Call us" },
{ icon: Phone, href: "tel:08847400729", ariaLabel: "Call us" },
{ icon: MessageCircle, href: "https://wa.me/1234567890", ariaLabel: "WhatsApp us" },
{ icon: MapPin, href: "#contact", ariaLabel: "Find our location" },
]}
@@ -219,4 +219,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}