diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 751185b..f5af94a 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -1,4 +1,4 @@
-import FooterBrand from '@/components/sections/footer/FooterBrand';
+import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarInline from '@/components/ui/NavbarInline';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot";
@@ -53,59 +53,34 @@ export default function Layout() {
-
+ title: "Contact",
+ items: [
+ { label: "Email Us", href: "mailto:contact@yunghondo.com" },
+ ]
+ }
+ ]}
+ copyright="Representing those who left home to build a future."
+ links={[]}
+ />
);
diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index 97de9c7..07a6062 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -6,19 +6,19 @@
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
-import TestimonialsSection from './HomePage/sections/Testimonials';
import ContactSection from './HomePage/sections/Contact';
-export default function HomePage(): React.JSX.Element {
+
+import QuoteSection from './HomePage/sections/Quote';export default function HomePage(): React.JSX.Element {
return (
<>
+
-
diff --git a/src/pages/HomePage/sections/Quote.tsx b/src/pages/HomePage/sections/Quote.tsx
new file mode 100644
index 0000000..22bfd62
--- /dev/null
+++ b/src/pages/HomePage/sections/Quote.tsx
@@ -0,0 +1,21 @@
+import TextAnimation from "@/components/ui/TextAnimation";
+import ScrollReveal from "@/components/ui/ScrollReveal";
+
+export default function QuoteSection() {
+ return (
+
+
+
+
+
+
+
+
+ Every song is a chapter. Every performance is a statement. Every victory is for the diaspora.
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/pages/HomePage/sections/Testimonials.tsx b/src/pages/HomePage/sections/Testimonials.tsx
deleted file mode 100644
index c3d7a56..0000000
--- a/src/pages/HomePage/sections/Testimonials.tsx
+++ /dev/null
@@ -1,32 +0,0 @@
-// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
-// file as the canonical source for the "testimonials" section.
-
-import React from 'react';
-import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
-import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
-
-export default function TestimonialsSection(): React.JSX.Element {
- return (
-
-
-
-
-
- );
-}