diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..7766414
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,114 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
+import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FooterCard from "@/components/sections/footer/FooterCard";
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/bus-tickets/page.tsx b/src/app/bus-tickets/page.tsx
new file mode 100644
index 0000000..a27eb82
--- /dev/null
+++ b/src/app/bus-tickets/page.tsx
@@ -0,0 +1,125 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
+import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FooterCard from "@/components/sections/footer/FooterCard";
+
+export default function BusTicketsPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..db8809d
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,93 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import ContactCTA from "@/components/sections/contact/ContactCTA";
+import FooterCard from "@/components/sections/footer/FooterCard";
+
+export default function ContactPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/courier-services/page.tsx b/src/app/courier-services/page.tsx
new file mode 100644
index 0000000..70f511c
--- /dev/null
+++ b/src/app/courier-services/page.tsx
@@ -0,0 +1,125 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
+import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FooterCard from "@/components/sections/footer/FooterCard";
+
+export default function CourierServicesPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/flight-tickets/page.tsx b/src/app/flight-tickets/page.tsx
new file mode 100644
index 0000000..46f8ebd
--- /dev/null
+++ b/src/app/flight-tickets/page.tsx
@@ -0,0 +1,125 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
+import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FooterCard from "@/components/sections/footer/FooterCard";
+
+export default function FlightTicketsPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 746ecb7..5c4b553 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -14,19 +14,14 @@ const inter = Inter({
});
export const metadata: Metadata = {
- title: "Luxe Journeys | Luxury Travel Agency & Exclusive Destinations", description: "Discover curated luxury travel experiences and exclusive destinations worldwide. Personalized itineraries, 5-star accommodations, and concierge service.", keywords: "luxury travel, travel agency, exclusive destinations, luxury vacations, curated journeys, upscale travel", robots: {
+ title: "Ramnet Solutions | Flight, Bus & Courier Services", description: "Book flight tickets, bus tickets, and courier services with Ramnet Solutions. Fast, reliable, and affordable transportation and logistics solutions.", keywords: "flight booking, bus tickets, courier services, travel, logistics, transportation", robots: {
index: true,
follow: true,
},
openGraph: {
- title: "Luxe Journeys | Premium Travel Experiences", description: "Crafting unforgettable luxury travel journeys to the world's most exclusive destinations", type: "website", siteName: "Luxe Journeys", images: [
- {
- url: "http://img.b2bpic.net/free-photo/luxury-sun-beach-perfect-bay_1232-4212.jpg", alt: "Luxury travel destination"},
- ],
- },
+ title: "Ramnet Solutions | Travel & Logistics Services", description: "Your trusted partner for flight bookings, bus tickets, and courier services", type: "website", siteName: "Ramnet Solutions"},
twitter: {
- card: "summary_large_image", title: "Luxe Journeys | Luxury Travel Agency", description: "Curated luxury travel experiences and personalized journeys", images: ["http://img.b2bpic.net/free-photo/luxury-sun-beach-perfect-bay_1232-4212.jpg"],
- },
+ card: "summary_large_image", title: "Ramnet Solutions | Flight, Bus & Courier Services", description: "Book flights, buses, and send packages with ease"},
};
export default function RootLayout({
diff --git a/src/app/page.tsx b/src/app/page.tsx
index aeb3582..4ab10b9 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -27,34 +27,38 @@ export default function LandingPage() {
>
-
+
-
-
-
-
@@ -149,20 +122,20 @@ export default function LandingPage() {
@@ -170,8 +143,8 @@ export default function LandingPage() {