diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 76b7b5d..875b8a2 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,8 +1,17 @@
import type { Metadata } from "next";
+import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
+});
+
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
+});
+
export const metadata: Metadata = {
- title: "BlasaCar - Ride Sharing for Morocco", description: "Skip the WhatsApp chaos. Book rides in seconds."};
+ 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,
@@ -11,7 +20,9 @@ export default function RootLayout({
}) {
return (
-
{children}
+
+ {children}
+
-
@@ -142,28 +133,22 @@ 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"
@@ -214,14 +199,11 @@ export default function HomePage() {