Skip to content

Commit

Permalink
Updated bigfoot(er)
Browse files Browse the repository at this point in the history
  • Loading branch information
Monstarrrr committed Dec 19, 2024
1 parent 999d9d1 commit f0ad2f3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion frontend/app/(routes)/(auth)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function AuthLayout({ children }: { children: React.ReactNode })
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'center',
height: 'calc(100dvh - 54px - 24px)',
height: 'calc(100dvh - 51px - 24px - 48px - 24px)',
background: '#1f1f1f',
}}
>
Expand Down
19 changes: 13 additions & 6 deletions frontend/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function RootLayout({ children }: PropsType) {
<Header />
<div
style={{
minHeight: `calc(100dvh - 54px - 24px)`,
minHeight: `calc(100dvh - 51px - 24px - 48px - 24px)`,
}}
>
{children}
Expand All @@ -59,14 +59,21 @@ export default function RootLayout({ children }: PropsType) {
opacity: 0.7,
fontStyle: 'italic',
marginRight: '6px',
pointerEvents: 'none',
textAlign: 'center',
}}
>
Rebutify, {new Date().getFullYear()}.<br />
<Link style={{ marginLeft: '6px', color: '#fff' }} href='/about'>About</Link>
<Link style={{ marginLeft: '6px', color: '#fff' }} href='/contact'>Contact</Link>
<Link style={{ marginLeft: '6px', color: '#fff' }} href='/ToS'>Terms of Service</Link>
<span style={{ pointerEvents: 'none' }}>
Rebutify, {new Date().getFullYear()}.
</span><br />
<Link style={{ marginLeft: '6px', color: '#fff' }} href='https://docs.google.com/document/d/1YD5JONwXirWWoSGQblhfEtk968Ux9Y2Sgw0Dd9XnpuI'>
About
</Link>
<Link style={{ marginLeft: '6px', color: '#fff' }} href='/https://discord.gg/QHNutWjpHy'>
Discord
</Link>
<Link style={{ marginLeft: '6px', color: '#fff' }} href='/ToS'>
Terms of Service
</Link>
</span>
</footer>
</StoreProvider>
Expand Down

0 comments on commit f0ad2f3

Please sign in to comment.