Skip to content
Open
Show file tree
Hide file tree
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
15 changes: 9 additions & 6 deletions src/app/onboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,15 @@ export default function OnboardPage() {
{/* Header */}
<div className="mb-8 text-center">
<section className="flex flex-col items-center justify-center text-center">
<Image
src="/BDLogo_White.svg"
width={130}
height={130}
alt="Bitcoin Deepa"
/>
<div className="relative h-[130px] w-[130px]">
<Image
src="/BDLogo_White.svg"
alt="Bitcoin Deepa"
fill
priority
sizes="130px"
/>
</div>
<Title weight="2">Welcome to Bitcoin Deepa! 🇱🇰</Title>
</section>
<Subheadline className="mt-3 text-gray-300">
Expand Down
10 changes: 9 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,15 @@ export default function Home() {
return (
<main className="grid min-h-screen p-5">
<section className="flex flex-col items-center justify-center text-center">
<Image src="/BDLogo_White.svg" width={160} height={160} alt="Bitcoin Deepa" />
<div className="relative h-[160px] w-[160px]">
<Image
src="/BDLogo_White.svg"
alt="Bitcoin Deepa"
fill
priority
sizes="160px"
/>
</div>
<Title weight="2">Join Sri Lanka&apos;s Fastest Growing Bitcoin Community 🇱🇰</Title>
<UserCount />
</section>
Expand Down