Skip to content

Commit

Permalink
Merge pull request #8 from FGA0138-MDS-Ajax/front
Browse files Browse the repository at this point in the history
Front
  • Loading branch information
nanecapde authored Jun 24, 2024
2 parents 7721b3b + 41cf274 commit 552dbae
Show file tree
Hide file tree
Showing 25 changed files with 1,099 additions and 23 deletions.
35 changes: 35 additions & 0 deletions projeto/client/app/auth/home/Times/America_Mineiro/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react';
import { Bebas_Neue } from 'next/font/google';
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { LoginButton } from '@/components/auth/login-button';
import Navbar from '@/components/Navbar';
import Sidebar from '@/components/Sidebar';

const font = Bebas_Neue({
subsets: ['latin'],
weight: ['400'],
});

export default function Home() {
return (
<main className="flex flex-col items-center justify-center flex-grow">
<img src="https://logodetimes.com/times/america-mineiro/logo-america-mineiro-2048.png" alt="América Mineiro" width={100} height={100} />
<div className="space-y-6 text-center">

<h1
className={cn(
'text-6xl font-semibold text-white drop-shadow-md',
font.className
)}
>
América Mineiro
</h1>
<p className="text-lg text-black">
Chega de ficar se perguntando onde o jogo do seu time favorito será transmitido
</p>
</div>
</main>

);
}
35 changes: 35 additions & 0 deletions projeto/client/app/auth/home/Times/Atletico_Goianiense/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react';
import { Bebas_Neue } from 'next/font/google';
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { LoginButton } from '@/components/auth/login-button';
import Navbar from '@/components/Navbar';
import Sidebar from '@/components/Sidebar';

const font = Bebas_Neue({
subsets: ['latin'],
weight: ['400'],
});

export default function Home() {
return (
<main className="flex flex-col items-center justify-center flex-grow">
<img src="https://logodetimes.com/times/atletico-goianiense/logo-atletico-goianiense-512.png" alt="Atletico Goianiense" width={100} height={100} />
<div className="space-y-6 text-center">

<h1
className={cn(
'text-6xl font-semibold text-white drop-shadow-md',
font.className
)}
>
Atletico Goianiense
</h1>
<p className="text-lg text-black">
Chega de ficar se perguntando onde o jogo do seu time favorito será transmitido
</p>
</div>
</main>

);
}
35 changes: 35 additions & 0 deletions projeto/client/app/auth/home/Times/Atletico_Mineiro/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react';
import { Bebas_Neue } from 'next/font/google';
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { LoginButton } from '@/components/auth/login-button';
import Navbar from '@/components/Navbar';
import Sidebar from '@/components/Sidebar';

const font = Bebas_Neue({
subsets: ['latin'],
weight: ['400'],
});

export default function Home() {
return (
<main className="flex flex-col items-center justify-center flex-grow">
<img src="https://logodetimes.com/times/atletico-mineiro/logo-atletico-mineiro-2048.png" alt="Atletico Mineiro" width={100} height={100} />
<div className="space-y-6 text-center">

<h1
className={cn(
'text-6xl font-semibold text-white drop-shadow-md',
font.className
)}
>
Atletico Mineiro
</h1>
<p className="text-lg text-black">
Chega de ficar se perguntando onde o jogo do seu time favorito será transmitido
</p>
</div>
</main>

);
}
35 changes: 35 additions & 0 deletions projeto/client/app/auth/home/Times/Atletico_Paranaense/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react';
import { Bebas_Neue } from 'next/font/google';
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { LoginButton } from '@/components/auth/login-button';
import Navbar from '@/components/Navbar';
import Sidebar from '@/components/Sidebar';

const font = Bebas_Neue({
subsets: ['latin'],
weight: ['400'],
});

export default function Home() {
return (
<main className="flex flex-col items-center justify-center flex-grow">
<img src="https://logodetimes.com/times/atletico-paranaense/logo-atletico-paranaense-2048.png" alt="Atletico Paranaense" width={100} height={100} />
<div className="space-y-6 text-center">

<h1
className={cn(
'text-6xl font-semibold text-white drop-shadow-md',
font.className
)}
>
Atletico Paranaense
</h1>
<p className="text-lg text-black">
Chega de ficar se perguntando onde o jogo do seu time favorito será transmitido
</p>
</div>
</main>

);
}
35 changes: 35 additions & 0 deletions projeto/client/app/auth/home/Times/Bahia/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react';
import { Bebas_Neue } from 'next/font/google';
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { LoginButton } from '@/components/auth/login-button';
import Navbar from '@/components/Navbar';
import Sidebar from '@/components/Sidebar';

const font = Bebas_Neue({
subsets: ['latin'],
weight: ['400'],
});

export default function Home() {
return (
<main className="flex flex-col items-center justify-center flex-grow">
<img src="https://logodetimes.com/times/bahia/logo-bahia-2048.png" alt="Bahia" width={100} height={100} />
<div className="space-y-6 text-center">

<h1
className={cn(
'text-6xl font-semibold text-white drop-shadow-md',
font.className
)}
>
Bahia
</h1>
<p className="text-lg text-black">
Chega de ficar se perguntando onde o jogo do seu time favorito será transmitido
</p>
</div>
</main>

);
}
35 changes: 35 additions & 0 deletions projeto/client/app/auth/home/Times/Botafogo/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react';
import { Bebas_Neue } from 'next/font/google';
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { LoginButton } from '@/components/auth/login-button';
import Navbar from '@/components/Navbar';
import Sidebar from '@/components/Sidebar';

const font = Bebas_Neue({
subsets: ['latin'],
weight: ['400'],
});

export default function Home() {
return (
<main className="flex flex-col items-center justify-center flex-grow">
<img src="https://logodetimes.com/times/botafogo/logo-botafogo-2048.png" alt="Botafogo" width={100} height={100} />
<div className="space-y-6 text-center">

<h1
className={cn(
'text-6xl font-semibold text-white drop-shadow-md',
font.className
)}
>
Botafogo
</h1>
<p className="text-lg text-black">
Chega de ficar se perguntando onde o jogo do seu time favorito será transmitido
</p>
</div>
</main>

);
}
35 changes: 35 additions & 0 deletions projeto/client/app/auth/home/Times/Bragantino/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react';
import { Bebas_Neue } from 'next/font/google';
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { LoginButton } from '@/components/auth/login-button';
import Navbar from '@/components/Navbar';
import Sidebar from '@/components/Sidebar';

const font = Bebas_Neue({
subsets: ['latin'],
weight: ['400'],
});

export default function Home() {
return (
<main className="flex flex-col items-center justify-center flex-grow">
<img src="https://logodetimes.com/times/red-bull-bragantino/logo-red-bull-bragantino-1536.png" alt="Bragantino" width={100} height={100} />
<div className="space-y-6 text-center">

<h1
className={cn(
'text-6xl font-semibold text-white drop-shadow-md',
font.className
)}
>
Bragantino
</h1>
<p className="text-lg text-black">
Chega de ficar se perguntando onde o jogo do seu time favorito será transmitido
</p>
</div>
</main>

);
}
35 changes: 35 additions & 0 deletions projeto/client/app/auth/home/Times/Corinthias/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react';
import { Bebas_Neue } from 'next/font/google';
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { LoginButton } from '@/components/auth/login-button';
import Navbar from '@/components/Navbar';
import Sidebar from '@/components/Sidebar';

const font = Bebas_Neue({
subsets: ['latin'],
weight: ['400'],
});

export default function Home() {
return (
<main className="flex flex-col items-center justify-center flex-grow">
<img src="https://logodetimes.com/times/corinthians/logo-corinthians-2048.png" alt="Corinthias" width={100} height={100} />
<div className="space-y-6 text-center">

<h1
className={cn(
'text-6xl font-semibold text-white drop-shadow-md',
font.className
)}
>
Corinthias
</h1>
<p className="text-lg text-black">
Chega de ficar se perguntando onde o jogo do seu time favorito será transmitido
</p>
</div>
</main>

);
}
35 changes: 35 additions & 0 deletions projeto/client/app/auth/home/Times/Criciuma/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react';
import { Bebas_Neue } from 'next/font/google';
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { LoginButton } from '@/components/auth/login-button';
import Navbar from '@/components/Navbar';
import Sidebar from '@/components/Sidebar';

const font = Bebas_Neue({
subsets: ['latin'],
weight: ['400'],
});

export default function Home() {
return (
<main className="flex flex-col items-center justify-center flex-grow">
<img src="https://logodetimes.com/times/criciuma/logo-criciuma-1.png" alt="Criciuma" width={100} height={100} />
<div className="space-y-6 text-center">

<h1
className={cn(
'text-6xl font-semibold text-white drop-shadow-md',
font.className
)}
>
Criciuma
</h1>
<p className="text-lg text-black">
Chega de ficar se perguntando onde o jogo do seu time favorito será transmitido
</p>
</div>
</main>

);
}
35 changes: 35 additions & 0 deletions projeto/client/app/auth/home/Times/Cruzeiro/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react';
import { Bebas_Neue } from 'next/font/google';
import { cn } from '@/lib/utils';
import { Button } from '@/components/ui/button';
import { LoginButton } from '@/components/auth/login-button';
import Navbar from '@/components/Navbar';
import Sidebar from '@/components/Sidebar';

const font = Bebas_Neue({
subsets: ['latin'],
weight: ['400'],
});

export default function Home() {
return (
<main className="flex flex-col items-center justify-center flex-grow">
<img src="https://logodetimes.com/times/cruzeiro/logo-cruzeiro-1536.png" alt="Cruzeiro" width={100} height={100} />
<div className="space-y-6 text-center">

<h1
className={cn(
'text-6xl font-semibold text-white drop-shadow-md',
font.className
)}
>
Cruzeiro
</h1>
<p className="text-lg text-black">
Chega de ficar se perguntando onde o jogo do seu time favorito será transmitido
</p>
</div>
</main>

);
}
Loading

0 comments on commit 552dbae

Please sign in to comment.