diff --git a/frontend/apps/website/src/app/business/page.tsx b/frontend/apps/website/src/app/business/page.tsx new file mode 100644 index 0000000..a5370c2 --- /dev/null +++ b/frontend/apps/website/src/app/business/page.tsx @@ -0,0 +1,32 @@ +import { + BtcMap, + ContactSection, + MerchantDirectoryCTA, + MerchantInsightsBanner, + MerchantStats, +} from '@/components/business'; +import { Contribute } from '@/components/home/Contribute'; +import { Hero } from '@/components/ui'; +import { Location, Store } from '@/components/ui/svgs'; + +export default function Business() { + return ( + <> + + Madeira’s community leads in local Bitcoin adoption with businesses embracing the global + currency + + + ( + + )} + /> + + + + + + ); +} diff --git a/frontend/apps/website/src/app/layout.tsx b/frontend/apps/website/src/app/layout.tsx index 57a65c7..bef6227 100644 --- a/frontend/apps/website/src/app/layout.tsx +++ b/frontend/apps/website/src/app/layout.tsx @@ -22,7 +22,7 @@ export default function RootLayout({ // useTheme(); return ( - +
diff --git a/frontend/apps/website/src/assets/images/business-contact-section-image.png b/frontend/apps/website/src/assets/images/business-contact-section-image.png new file mode 100644 index 0000000..54c1311 Binary files /dev/null and b/frontend/apps/website/src/assets/images/business-contact-section-image.png differ diff --git a/frontend/apps/website/src/assets/images/merchant-directory-cta-image.png b/frontend/apps/website/src/assets/images/merchant-directory-cta-image.png new file mode 100644 index 0000000..3d82173 Binary files /dev/null and b/frontend/apps/website/src/assets/images/merchant-directory-cta-image.png differ diff --git a/frontend/apps/website/src/components/business/BtcMap.tsx b/frontend/apps/website/src/components/business/BtcMap.tsx new file mode 100644 index 0000000..cc7f24b --- /dev/null +++ b/frontend/apps/website/src/components/business/BtcMap.tsx @@ -0,0 +1,22 @@ +'use client'; + +import { useIsMobile } from '@/hooks'; + +export function BtcMap(): React.ReactElement { + const isMobile = useIsMobile(); + + const src = isMobile + ? 'https://btcmap.org/map#10/32.72043/-16.98716' + : 'https://btcmap.org/map#11/32.76389/-16.97388'; + + return ( +
+