diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index d128b51..76b7b5d 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,69 +1,17 @@
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 "./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 inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const sourceSans3 = Source_Sans_3({
- variable: "--font-source-sans-3",
- 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 - Ride Sharing for Morocco", description: "Skip the WhatsApp chaos. Book rides in seconds."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index c1cf4d3..f3f4fae 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
-import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
+import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
import SplitAbout from "@/components/sections/about/SplitAbout";
import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
@@ -66,21 +66,16 @@ export default function HomePage() {
brandName="BlasaCar"
navItems={navItems}
button={{
- text: "Book a Ride", href: "#"}}
+ text: "Book a Ride", href: "#"
+ }}
/>
-
@@ -133,22 +142,28 @@ export default function HomePage() {
features={[
{
id: "1", title: "Quick Trip Posting", tags: ["Drivers", "2 Minutes"],
- imageSrc: "http://img.b2bpic.net/free-photo/adoption-application-family-guardianship-support-concept_53876-122724.jpg", imageAlt: "Quick trip posting interface"},
+ imageSrc: "http://img.b2bpic.net/free-photo/adoption-application-family-guardianship-support-concept_53876-122724.jpg", imageAlt: "Quick trip posting interface"
+ },
{
id: "2", title: "Smart Search", tags: ["Passengers", "Real-time"],
- imageSrc: "http://img.b2bpic.net/free-vector/goals-habits-tracking-application-template_23-2148676844.jpg", imageAlt: "Trip search and filter interface"},
+ imageSrc: "http://img.b2bpic.net/free-vector/goals-habits-tracking-application-template_23-2148676844.jpg", imageAlt: "Trip search and filter interface"
+ },
{
id: "3", title: "Verified Profiles", tags: ["CIN Verification", "Phone Verified"],
- imageSrc: "http://img.b2bpic.net/free-vector/mobile-face-scan_24908-56399.jpg", imageAlt: "Profile verification process"},
+ imageSrc: "http://img.b2bpic.net/free-vector/mobile-face-scan_24908-56399.jpg", imageAlt: "Profile verification process"
+ },
{
id: "4", title: "Transparent Pricing", tags: ["No Hidden Fees", "Clear Rates"],
- imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-two-colorful-wooden-squares-with-shopping-money-icons-black-calculator_181624-58059.jpg", imageAlt: "Pricing breakdown display"},
+ imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-two-colorful-wooden-squares-with-shopping-money-icons-black-calculator_181624-58059.jpg", imageAlt: "Pricing breakdown display"
+ },
{
id: "5", title: "Ratings & Reviews", tags: ["Build Trust", "Community Safe"],
- imageSrc: "http://img.b2bpic.net/free-vector/dj-customer-review-facebook-post-template_742173-1350.jpg", imageAlt: "Ratings and reviews section"},
+ imageSrc: "http://img.b2bpic.net/free-vector/dj-customer-review-facebook-post-template_742173-1350.jpg", imageAlt: "Ratings and reviews section"
+ },
{
id: "6", title: "WhatsApp Alerts", tags: ["Confirmations", "Reminders"],
- imageSrc: "http://img.b2bpic.net/free-photo/email-alert-popup-reminder-concept_53876-123867.jpg", imageAlt: "WhatsApp notification examples"},
+ imageSrc: "http://img.b2bpic.net/free-photo/email-alert-popup-reminder-concept_53876-123867.jpg", imageAlt: "WhatsApp notification examples"
+ },
]}
animationType="slide-up"
title="Features Built for Morocco"
@@ -199,11 +214,14 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}