Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

centred the hero component of wallet adapter page #196

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
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
cenetered the hero component of wallet adapter page
  • Loading branch information
vatan45 committed Sep 25, 2024
commit fa1c0a4e9ac399f0ab9c478e200c1fbf80385ad8
6 changes: 3 additions & 3 deletions src/app/wallet-adapter/page.tsx
Original file line number Diff line number Diff line change
@@ -79,22 +79,22 @@ const page = () => {
<TopBar />

<section className="w-full py-12 md:py-24 lg:py-32 xl:py-30">
<div className="container px-4 md:px-6">
<div className="container mx-auto px-4 md:px-6"> {/* Added mx-auto for centering */}
<div className="flex flex-col items-center space-y-4 text-center">
<div className="space-y-2">
<span className="inline-block bg-blue-100 text-gray-600 py-1 px-3 rounded-full text-sm font-semibold mb-4">
TipLink Wallet Adapter
</span>
<h1 className="text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl lg:text-6xl/none">
Making Solana apps
<span className="text-black/70">consumer ready</span>
<span className="text-black/70"> consumer ready</span>
</h1>
<p className="mx-auto max-w-[700px] text-gray-500 md:text-xl dark:text-gray-400">
Let your users login with just a Google account and start
signing transactions.
</p>
</div>
<div className="space-x-4">
<div className="flex justify-center"> {/* Centered button */}
<Button>
Integrate Now
<ArrowRight className="ml-2 h-4 w-4" />
Loading