Skip to content

Commit

Permalink
chore: speed up docker CI
Browse files Browse the repository at this point in the history
  • Loading branch information
VaalaCat committed Dec 7, 2024
1 parent 3562b8b commit 6269957
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions www/pages/login.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { Inter } from 'next/font/google'
import { Providers } from '@/components/providers'
import { TbBuildingTunnel } from 'react-icons/tb'
import { LoginComponent } from '@/components/login'
Expand All @@ -7,14 +6,12 @@ import { useTranslation } from 'react-i18next'
import { LanguageSwitcher } from '@/components/language-switcher'
import Link from 'next/link'

const inter = Inter({ subsets: ['latin'] })

export default function LoginPage() {
const router = useRouter()
const { t } = useTranslation();

return (
<main className={`${inter.className} min-h-screen`}>
<main className={`min-h-screen`}>
<Providers>
{/* Fixed Language Switcher */}
<div className="fixed top-4 right-4 z-50">
Expand Down
5 changes: 1 addition & 4 deletions www/pages/register.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { Inter } from 'next/font/google'
import { Providers } from '@/components/providers'
import { TbBuildingTunnel } from 'react-icons/tb'
import { RegisterComponent } from '@/components/register'
Expand All @@ -7,14 +6,12 @@ import { useTranslation } from 'react-i18next'
import { LanguageSwitcher } from '@/components/language-switcher'
import Link from 'next/link'

const inter = Inter({ subsets: ['latin'] })

export default function RegisterPage() {
const router = useRouter()
const { t } = useTranslation();

return (
<main className={`${inter.className} min-h-screen`}>
<main className={`min-h-screen`}>
<Providers>
{/* Fixed Language Switcher */}
<div className="fixed top-4 right-4 z-50">
Expand Down

0 comments on commit 6269957

Please sign in to comment.