diff --git a/app/page.tsx b/app/page.tsx index 48afd12..c51a596 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,6 +1,9 @@ +import CardCarousel from "@/components/Carousel"; +import Image from "next/image"; + export default function Home() { return ( -
+

@@ -114,6 +117,71 @@ export default function Home() {
+
+
+ about +
+
+

WHO WE ARE

+

+ Architects
of{" "} + Influence +

+

+ Da Next Agency is a premier public relations and strategic + communications firm based in Bangladesh. We specialize in crafting + compelling narratives, managing reputations, and driving impactful + campaigns for leaders, organizations, and brands. +

+

+ From political campaigns to corporate reputation management, we + offer a full spectrum of services designed to elevate your public + image and achieve your strategic objectives. +

+ + We don't just tell stories. We create movements + +
+
+
+
+ quotation-mark +
+

+ To nurture narratives and shape public perception,{" "} + + creating a lasting positive image + {" "} + in the community +

+
+

+ OUR MISSION +

+
+
+

+ WHAT WE DO +

+

+ Services That{" "} + + Transform + +

+
+
); } diff --git a/components/Carousel.tsx b/components/Carousel.tsx new file mode 100644 index 0000000..aed12a0 --- /dev/null +++ b/components/Carousel.tsx @@ -0,0 +1,23 @@ +"use client"; + +export default function CardCarousel() { + const cards = [ + { id: 1, title: "Card 1" }, + { id: 2, title: "Card 2" }, + { id: 3, title: "Card 3" }, + { id: 4, title: "Card 4" }, + ]; + + return ( +
+ {cards.map((card) => ( +
+ {card.title} +
+ ))} +
+ ); +} diff --git a/public/icons/quotation.png b/public/icons/quotation.png new file mode 100644 index 0000000..66affe6 Binary files /dev/null and b/public/icons/quotation.png differ diff --git a/public/images/about.jpg b/public/images/about.jpg new file mode 100644 index 0000000..789251a Binary files /dev/null and b/public/images/about.jpg differ