diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 094446c..12b5ce0 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -3,24 +3,21 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import TextAbout from "@/components/sections/about/TextAbout";
-import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
-import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
+import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
-import Link from "next/link";
-import { Linkedin, Twitter, Heart, Globe, Mail } from "lucide-react";
+import { Heart, Shield, Users, Award } from "lucide-react";
-const AboutPage = () => {
+export default function AboutPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Browse Animals", id: "/animals" },
- { name: "About", id: "about" },
+ { name: "About", id: "/about" },
{ name: "Contact", id: "contact" },
];
const footerColumns = [
{
- title: "Adoption",
- items: [
+ title: "Adoption", items: [
{ label: "Browse Pets", href: "/animals" },
{ label: "How to Adopt", href: "#how-it-works" },
{ label: "Adoption Stories", href: "#adoption-stories" },
@@ -28,8 +25,7 @@ const AboutPage = () => {
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "#team" },
{ label: "Partner with Us", href: "/partner" },
@@ -37,8 +33,7 @@ const AboutPage = () => {
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Donate", href: "/donate" },
{ label: "Volunteer", href: "/volunteer" },
@@ -46,8 +41,7 @@ const AboutPage = () => {
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -73,169 +67,70 @@ const AboutPage = () => {