Skip to content

Commit

Permalink
fix: logo text
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavan Soratur authored and Pavan Soratur committed Nov 2, 2024
1 parent 3d56cc8 commit 5ca8a8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
11 changes: 3 additions & 8 deletions app/auth/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import type { Metadata } from 'next';
import { archivoNarrow } from '@/config/fonts';
import { ThemeToggleButton } from '@/components/ThemeToggleButton';
import SparklesText from '@/components/ui/sparkles-text';
import { DotPattern } from '@/components/ui/dot-pattern';
import { cn } from '@/lib/utils';

Expand All @@ -20,13 +19,9 @@ export default function AuthLayout({
<div className='flex flex-col gap-8 w-full max-w-[600px]'>
<div className='flex flex-col gap-3'>
<div className='flex items-center justify-between'>
<SparklesText
text='clubspace.'
sparklesCount={4}
className={
archivoNarrow.className + ' text-4xl md:text-5xl lg:text-6xl'
}
/>
<p className={archivoNarrow.className + ' text-5xl font-bold'}>
clubspace.
</p>
<ThemeToggleButton />
</div>
<p>One platform, uniting campus clubs, creating community!</p>
Expand Down
5 changes: 2 additions & 3 deletions components/dashboard/DashboardSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { LogoutDropdownMenuItem } from '@/components/dashboard/LogoutDropdownMen
import { logout as logoutServerAction } from '@/actions/dashboard/logout';
import Link from 'next/link';
import { ThemeToggleButton } from '@/components/ThemeToggleButton';
import { Heading } from '@/components/Heading';
import { archivoNarrow } from '@/config/fonts';

const items = [
Expand All @@ -39,9 +38,9 @@ export const DashboardSidebar: React.FC = () => {
return (
<Sidebar>
<SidebarHeader className='pt-4'>
<Heading variant='h1' className={archivoNarrow.className + ' px-2'}>
<p className={archivoNarrow.className + ' px-2 text-4xl font-bold'}>
clubspace.
</Heading>
</p>
</SidebarHeader>
<SidebarContent>
<SidebarGroup>
Expand Down

0 comments on commit 5ca8a8e

Please sign in to comment.