7 Commits

Author SHA1 Message Date
6fac0117c9 Update src/app/page.tsx 2026-03-04 23:43:49 +00:00
b7e2fbaa34 Update src/app/layout.tsx 2026-03-04 23:43:48 +00:00
b22f37bec7 Merge version_2 into main
Merge version_2 into main
2026-03-04 23:41:51 +00:00
0a76d591fd Update src/app/page.tsx 2026-03-04 23:41:47 +00:00
d30acde041 Update src/app/layout.tsx 2026-03-04 23:41:46 +00:00
65756858e1 Merge version_1 into main
Merge version_1 into main
2026-03-04 23:37:01 +00:00
8d74d82538 Merge version_1 into main
Merge version_1 into main
2026-03-04 23:35:53 +00:00
2 changed files with 15 additions and 57 deletions

View File

@@ -1,69 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "BlasaCar - Safe Ride Sharing Between Moroccan Cities",
description: "Skip WhatsApp chaos. BlasaCar is Morocco's trusted platform for intercity ride sharing. Instant booking, verified drivers, transparent pricing. Join 50K+ users today.",
keywords: "ride sharing Morocco, intercity rides, carpooling, safe travel, taxi alternative",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "BlasaCar - Book Rides in Seconds",
description: "Safe, verified ride sharing between Moroccan cities. No more Facebook groups.",
type: "website",
siteName: "BlasaCar",
images: [
{
url: "http://img.b2bpic.net/free-vector/travel-booking-app-interface-set_23-2148590978.jpg",
alt: "BlasaCar ride sharing platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "BlasaCar - Book Rides in Seconds",
description: "Safe ride sharing between Moroccan cities",
images: ["http://img.b2bpic.net/free-vector/travel-booking-app-interface-set_23-2148590978.jpg"],
},
};
title: "BlasaCar - Skip the WhatsApp Chaos. Book Rides in Seconds.", description: "BlasaCar connects drivers and passengers traveling between Moroccan cities. Instant booking, transparent pricing, and verified travelers."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1431,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -77,7 +77,7 @@ export default function HomePage() {
background={{ variant: "glowing-orb" }}
kpis={[
{ value: "30 sec", label: "Average Booking Time" },
{ value: "100% Verified", label: "All Drivers & Passengers" },
{ value: "100% Verified", label: "Drivers & Passengers" },
{ value: "24/7 Support", label: "WhatsApp Notifications" },
]}
enableKpiAnimation={true}
@@ -270,4 +270,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}