Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions components/about-content.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use client'

import Image from "next/image"
import { SiteFooter } from "@/components/site-footer"
import { MissionSection } from "@/components/mission-section"

Expand All @@ -9,6 +10,27 @@ export function AboutContent() {
<div className="flex flex-1 flex-col pt-[calc(4.25rem+env(safe-area-inset-top,0px))] lg:pt-[calc(6.5rem+env(safe-area-inset-top,0px))] lg:pb-24">
<MissionSection title="Get to know Tiles Privacy" />
</div>
<div
className="w-full border-t border-black/[0.06] bg-background px-4 py-10 dark:border-white/[0.06] sm:px-6 md:px-8 lg:px-12 lg:py-14"
aria-hidden
>
<div className="mx-auto flex max-w-7xl justify-center">
<Image
src="/tiles_banner_outline_blk.svg"
alt=""
width={1200}
height={220}
className="h-auto w-full max-w-md min-[390px]:max-w-lg sm:max-w-xl dark:hidden"
/>
<Image
src="/tiles_banner_outline_wht.svg"
alt=""
width={1200}
height={220}
className="hidden h-auto w-full max-w-md min-[390px]:max-w-lg sm:max-w-xl dark:block"
/>
</div>
</div>
<SiteFooter />
</div>
)
Expand Down