diff --git a/components/ClientFocus.tsx b/components/ClientFocus.tsx index 0eef927..d32cd26 100644 --- a/components/ClientFocus.tsx +++ b/components/ClientFocus.tsx @@ -5,6 +5,7 @@ import { useInView } from "framer-motion"; import { useRef } from "react"; import { Users, UserCheck, Globe } from "lucide-react"; import { useAppTheme } from "@/components/ThemeProvider"; +import Image from "next/image"; export function ClientFocus() { const ref = useRef(null); @@ -94,7 +95,7 @@ export function ClientFocus() { animate={isInView ? { opacity: 1, y: 0 } : {}} transition={{ duration: 0.8, delay: 0.2 }} > - Client Focus + Who We Serve @@ -154,49 +155,25 @@ export function ClientFocus() {
-

Client Focus

+

Communities

-
- {[ - { flag: '🇭🇹', name: 'Haitian', type: 'emoji' }, - { flag: '🇯🇲', name: 'Jamaican', type: 'emoji' }, - { flag: '🇧🇸', name: 'Bahamian', type: 'emoji' }, - { flag: 'pan-african', name: 'Pan-African', type: 'css' }, - { flag: '🇮🇱', name: 'Israeli', type: 'emoji' }, - { flag: '🇻🇪', name: 'Venezuelan', type: 'emoji' }, - { flag: 'pride', name: 'LGBTQ+', type: 'css' }, - ].map((community, index) => ( - - {community.type === 'emoji' ? ( - - {community.flag} - - ) : community.flag === 'pan-african' ? ( -
-
-
-
-
- ) : community.flag === 'pride' ? ( -
-
-
-
-
-
-
-
- ) : null} -
- ))} +
+ + Organization of American States Flags +
diff --git a/public/flags.png b/public/flags.png new file mode 100644 index 0000000..41a7a6b Binary files /dev/null and b/public/flags.png differ