Skip to content

Commit

Permalink
chore(website): tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Dec 13, 2024
1 parent 5a18dc7 commit 0ab7389
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
release:
if: |
!startsWith(github.event.head_commit.message, 'chore(release):') &&
!startsWith(github.event.head_commit.message, 'chore(website):') &&
!startsWith(github.event.head_commit.message, 'docs:') &&
!startsWith(github.event.head_commit.message, 'ci:')
needs: [contributors]
Expand Down
2 changes: 1 addition & 1 deletion website/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function RootLayout ({ children }: { children: React.ReactNode })
target='_blank'
rel='noopener noreferrer'
>
<ThemeProvider attribute='class' forcedTheme='light' disableTransitionOnChange>
<ThemeProvider attribute='class' forcedTheme='dark' disableTransitionOnChange>
{/* <ModeToggle /> */}
{children}
</ThemeProvider>
Expand Down
2 changes: 1 addition & 1 deletion website/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export default function Home () {
<>
<Marquee direction='left' position='top' />
<main className='flex min-h-screen items-center justify-center bg-background text-foreground p-4 overflow-hidden relative border-8 border-foreground cursor-none'>
<Snowfall snowflakeCount={50} style={{ position: 'fixed' }} />
<Heading />
<Cursor />
<Snowfall snowflakeCount={50} />
</main>
<Marquee />
</>
Expand Down
2 changes: 1 addition & 1 deletion website/src/components/cursor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function Cursor () {
height: 0,
borderLeft: '10px solid transparent',
borderRight: '10px solid transparent',
borderBottom: '20px solid white',
borderBottom: '20px solid',
transform: 'translate(-50%, -50%) rotate(0)'
}}
/>
Expand Down
2 changes: 1 addition & 1 deletion website/src/components/heading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function Heading () {

return (
<h1
className='text-center font-mono whitespace-nowrap tracking-tighter select-none'
className='z-10 text-center font-mono whitespace-nowrap tracking-tighter select-none'
style={{
fontSize: `${fontSize}px`,
transform: `scaleY(${stretch}%)`,
Expand Down

0 comments on commit 0ab7389

Please sign in to comment.