diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..461798e
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,134 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import MediaAbout from '@/components/sections/about/MediaAbout';
+import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
+import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
+import { Building2, Briefcase, Award, Users } from 'lucide-react';
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..2afe47d
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,243 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import ContactFaq from '@/components/sections/contact/ContactFaq';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
+import { Phone, Mail, MapPin, Facebook, Linkedin, Twitter } from 'lucide-react';
+import { useState } from 'react';
+import Input from '@/components/form/Input';
+
+export default function ContactPage() {
+ const [formData, setFormData] = useState({
+ name: '',
+ email: '',
+ phone: '',
+ subject: '',
+ message: ''
+ });
+
+ const [isSubmitted, setIsSubmitted] = useState(false);
+
+ const handleInputChange = (field: string, value: string) => {
+ setFormData(prev => ({
+ ...prev,
+ [field]: value
+ }));
+ };
+
+ const handleSubmit = (e: React.FormEvent) => {
+ e.preventDefault();
+ // Form submission would be handled here
+ setIsSubmitted(true);
+ setTimeout(() => {
+ setIsSubmitted(false);
+ setFormData({ name: '', email: '', phone: '', subject: '', message: '' });
+ }, 3000);
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4f87f44..665fad9 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -22,11 +22,13 @@ const dmSans = DM_Sans({
export const metadata: Metadata = {
title: "Business Center 2.0 | Marrakesh Business Solutions", description: "Professional business consulting, company formation, domiciliation, and coworking in Marrakesh. Expert guidance for entrepreneurs and growing businesses.", keywords: "business center Marrakesh, company formation Morocco, domiciliation juridique, business consulting Marrakesh, coworking space, entrepreneur services", metadataBase: new URL("https://businesscenter2.ma"),
alternates: {
- canonical: "https://businesscenter2.ma"},
+ canonical: "https://businesscenter2.ma"
+ },
openGraph: {
title: "Business Center 2.0 | Marrakesh Business Solutions", description: "Transform your business in Marrakesh with professional consulting and comprehensive business services.", siteName: "Business Center 2.0", type: "website", images: [
{
- url: "http://img.b2bpic.net/free-photo/stylish-portrait-bearded-entrepreneur_1098-16154.jpg", alt: "Business Center 2.0 Office"},
+ url: "http://img.b2bpic.net/free-photo/stylish-portrait-bearded-entrepreneur_1098-16154.jpg", alt: "Business Center 2.0 Office"
+ },
],
},
twitter: {
diff --git a/src/app/page.tsx b/src/app/page.tsx
index fee4845..fb702f5 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -30,11 +30,11 @@ export default function LandingPage() {