Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Drakkarrr committed Jan 9, 2024
1 parent 762bbcb commit ede9ae3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions components/FreeCounter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const FreeCounter: React.FC<FreeCounterProps> = ({
<div className='px-3'>
<Card className='border-0 bg-white/10'>
<CardContent className='py-6'>
<div className='mb-4 space-y-2 text-sm text-center text-white'>
<div className='mb-4 space-y-2 text-center text-sm text-white'>
<p>
{apiLimit} / {MAX_FREE_COUNTS} Free Generations
</p>
Expand All @@ -45,7 +45,7 @@ const FreeCounter: React.FC<FreeCounterProps> = ({
className='w-full'
>
Upgrade
<Zap className='w-4 h-4 ml-2 fill-white' />
<Zap className='ml-2 h-4 w-4 fill-white' />
</Button>
</CardContent>
</Card>
Expand Down
8 changes: 4 additions & 4 deletions components/LandingHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const LandingHero = () => {
const { isSignedIn } = useAuth();

return (
<div className='space-y-5 font-bold text-center text-white py-36'>
<div className='space-y-5 py-36 text-center font-bold text-white'>
<div className='space-y-5 text-4xl font-extrabold md:text-6xl lg:text-7xl'>
<h1>D-prompt AI Generative for</h1>
<div className='text-md bg-gradient-to-r from-[#9076fc] to-[#61cfeb] bg-clip-text text-transparent'>
Expand Down Expand Up @@ -38,17 +38,17 @@ const LandingHero = () => {
<Link href={isSignedIn ? '/dashboard' : '/sign-up'}>
<Button
variant='premium'
className='p-4 rounded-full md:p-6 md:text-lg'
className='rounded-full p-4 md:p-6 md:text-lg'
>
Start Generating For Free
</Button>
</Link>
</div>
<div className='font-normal text-xm text-zinc-400 md:text-sm'>
<div className='text-xm font-normal text-zinc-400 md:text-sm'>
Developed by &nbsp;
<Link
href='https://github.com/Drakkarrr'
className='tracking-wider underline text-slate-200'
className='tracking-wider text-slate-200 underline'
>
Drakkar
</Link>
Expand Down
10 changes: 5 additions & 5 deletions components/ProModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ const ProModal = () => {
<Dialog open={proModal.isOpen} onOpenChange={proModal.onClose}>
<DialogContent>
<DialogHeader>
<DialogTitle className='flex flex-col items-center justify-center pb-2 gap-y-4'>
<div className='flex items-center text-xl font-bold gap-x-2'>
<DialogTitle className='flex flex-col items-center justify-center gap-y-4 pb-2'>
<div className='flex items-center gap-x-2 text-xl font-bold'>
Upgrade to D-prompt
<Badge variant='default' className='py-1 text-sm uppercase'>
pro
</Badge>
</div>
</DialogTitle>
<DialogDescription className='pt-2 space-y-2 font-medium text-center'>
<DialogDescription className='space-y-2 pt-2 text-center font-medium'>
{tools.map((tool) => (
<Card
key={tool.href}
Expand All @@ -61,7 +61,7 @@ const ProModal = () => {
</div>
<div className='text-sm font-semibold'>{tool.label}</div>
</div>
<Check className='w-5 h-5 text-primary' />
<Check className='h-5 w-5 text-primary' />
</Card>
))}
</DialogDescription>
Expand All @@ -75,7 +75,7 @@ const ProModal = () => {
className='w-full'
>
Upgrade to Pro
<Zap className='w-4 h-4 ml-2 fill-white' />
<Zap className='ml-2 h-4 w-4 fill-white' />
</Button>
</DialogFooter>
</DialogContent>
Expand Down

0 comments on commit ede9ae3

Please sign in to comment.