diff --git a/src/app/about/layout.tsx b/src/app/about/layout.tsx
new file mode 100644
index 0000000..eb76706
--- /dev/null
+++ b/src/app/about/layout.tsx
@@ -0,0 +1,32 @@
+import type { Metadata } from "next";
+
+export const metadata: Metadata = {
+ title: "About Us | Tech Master - Award-Winning IT Solutions Dubai",
+ description: "Learn about Tech Master, an award-winning Dubai-based technology agency specializing in digital transformation, web development, and innovative IT solutions since 2020.",
+ keywords: [
+ "about Tech Master",
+ "Dubai IT company",
+ "award-winning tech agency",
+ "digital transformation company",
+ "web development company Dubai",
+ "IT solutions provider",
+ "tech company Dubai",
+ "software development company"
+ ],
+ openGraph: {
+ title: "About Us | Tech Master - Award-Winning IT Solutions Dubai",
+ description: "Learn about Tech Master, an award-winning Dubai-based technology agency specializing in digital transformation and innovative IT solutions.",
+ url: "https://tech-masters.guru/about",
+ },
+ alternates: {
+ canonical: "/about",
+ },
+};
+
+export default function AboutLayout({
+ children,
+}: {
+ children: React.ReactNode;
+}) {
+ return children;
+}
\ No newline at end of file
diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..f6cae3e
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,253 @@
+"use client";
+
+import {
+ CheckCircleOutlined,
+ GlobalOutlined,
+ RocketOutlined,
+ StarOutlined,
+ TeamOutlined,
+ TrophyOutlined
+} from "@ant-design/icons";
+import { Avatar, Card, Col, Row, Typography } from "antd";
+import { motion } from "framer-motion";
+
+const { Title, Paragraph } = Typography;
+
+export default function AboutPage() {
+ const stats = [
+ { icon: , number: "50+", label: "Projects Completed" },
+ { icon: , number: "25+", label: "Happy Clients" },
+ { icon: , number: "15+", label: "Expert Developers" },
+ { icon: , number: "3+", label: "Years Experience" },
+ ];
+
+ const values = [
+ {
+ title: "Innovation First",
+ description: "We stay ahead of technology trends to deliver cutting-edge solutions that give our clients a competitive advantage.",
+ icon:
+ },
+ {
+ title: "Quality Excellence",
+ description: "Every project is crafted with attention to detail, ensuring the highest standards of quality and performance.",
+ icon:
+ },
+ {
+ title: "Client Success",
+ description: "Your success is our success. We work closely with clients to understand their needs and deliver solutions that exceed expectations.",
+ icon:
+ },
+ {
+ title: "Transparency",
+ description: "We believe in open communication and transparent processes, keeping you informed at every step of your project.",
+ icon:
+ }
+ ];
+
+ return (
+
+ {/* Hero Section */}
+
+
+
+
+ About Tech Master
+
+
+ From Dubai to the stars, we're an award-winning technology agency
+ dedicated to transforming businesses through innovative digital solutions.
+
+
+
+
+
+ {/* Stats Section */}
+
+
+
+ {stats.map((stat, index) => (
+
+
+
+ {stat.icon}
+
+
+ {stat.number}
+
+
{stat.label}
+
+
+ ))}
+
+
+
+
+ {/* Story Section */}
+
+
+
+
+
+
+ Our Story
+
+
+ Founded in 2020, Tech Master emerged from a vision to bridge the gap
+ between traditional business practices and cutting-edge technology.
+ Based in Dubai, we've grown from a small startup to an award-winning
+ technology agency serving clients across the UAE and beyond.
+
+
+ Our journey has been marked by continuous innovation, unwavering
+ commitment to quality, and a deep understanding of our clients' needs.
+ We believe that technology should be an enabler, not a barrier,
+ and we work tirelessly to make digital transformation accessible
+ to businesses of all sizes.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/* Values Section */}
+
+
+
+
+ Our Values
+
+
+ These core values guide everything we do and shape the way we
+ approach every project and client relationship.
+
+
+
+
+ {values.map((value, index) => (
+
+
+
+ Our Team
+
+
+ Meet the passionate professionals behind Tech Master's success.
+ Our diverse team brings together expertise from various domains
+ to deliver exceptional results.
+
+
+
+
+
+
+
+ Ahmed Hassan
+ CEO & Founder
+
+ Visionary leader with 10+ years in digital transformation
+
+
+
+
+
+
+ Sarah Johnson
+ CTO
+
+ Technical expert specializing in AI and cloud solutions
+
+
+
+
+
+
+ Raj Patel
+ Lead Developer
+
+ Full-stack developer with expertise in modern frameworks
+
+
+
+
+