-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b439ac
commit 9824e2c
Showing
47 changed files
with
2,354 additions
and
1,145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ N/A | |
N/A | ||
|
||
- **Solution** | ||
N/A | ||
N/A | ||
|
||
</details> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
import type { Metadata } from 'next' | ||
import { Inter } from 'next/font/google' | ||
import '../styles/globals.css' | ||
import type { Metadata } from "next"; | ||
import { Inter } from "next/font/google"; | ||
import "../styles/globals.css"; | ||
|
||
const inter = Inter({ subsets: ['latin'] }) | ||
const inter = Inter({ subsets: ["latin"] }); | ||
|
||
export const metadata: Metadata = { | ||
title: 'Create Next App', | ||
description: 'Generated by create next app', | ||
} | ||
title: "Create Next App", | ||
description: "Generated by create next app", | ||
}; | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: Readonly<{ | ||
children: React.ReactNode | ||
children: React.ReactNode; | ||
}>) { | ||
return ( | ||
<html lang="en"> | ||
<body className={inter.className}>{children}</body> | ||
</html> | ||
) | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
import '../../styles/globals.css' | ||
import type { Metadata } from 'next' | ||
import { Poppins } from 'next/font/google' | ||
import React from 'react' | ||
import "../../styles/globals.css"; | ||
import type { Metadata } from "next"; | ||
import { Poppins } from "next/font/google"; | ||
import React from "react"; | ||
|
||
const poppins = Poppins({ | ||
subsets: ['latin'], | ||
weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'], | ||
}) | ||
subsets: ["latin"], | ||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], | ||
}); | ||
|
||
export const metadata: Metadata = { | ||
title: 'Octopost', | ||
title: "Octopost", | ||
description: | ||
'A octo te leva para um mergulho em todas suas redes em um click', | ||
} | ||
"A octo te leva para um mergulho em todas suas redes em um click", | ||
}; | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode | ||
children: React.ReactNode; | ||
}) { | ||
return ( | ||
<html lang="en"> | ||
<body className={`${poppins.className} bg-primary-gray max-h-screen`}> | ||
{children} | ||
</body> | ||
</html> | ||
) | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
import '../../styles/globals.css' | ||
import type { Metadata } from 'next' | ||
import { Montserrat } from 'next/font/google' | ||
import React from 'react' | ||
import "../../styles/globals.css"; | ||
import type { Metadata } from "next"; | ||
import { Montserrat } from "next/font/google"; | ||
import React from "react"; | ||
|
||
const montserrat = Montserrat({ | ||
subsets: ['latin'], | ||
weight: ['100', '200', '300', '400', '500', '600', '700', '800', '900'], | ||
variable: '--font-montserrat', | ||
}) | ||
subsets: ["latin"], | ||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], | ||
variable: "--font-montserrat", | ||
}); | ||
|
||
export const metadata: Metadata = { | ||
title: 'Petdex', | ||
title: "Petdex", | ||
description: | ||
'Bem vindo ao petdex. Clique aqui para saber mais sobre os pets.', | ||
} | ||
"Bem vindo ao petdex. Clique aqui para saber mais sobre os pets.", | ||
}; | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode | ||
children: React.ReactNode; | ||
}) { | ||
return ( | ||
<html lang="en"> | ||
<body className={`${montserrat.className} bg-primary-gray max-h-screen`}> | ||
{children} | ||
</body> | ||
</html> | ||
) | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import Footer from '@/components/petdex/Footer/Footer' | ||
import Footer from "@/components/petdex/Footer/Footer"; | ||
|
||
function Page() { | ||
return ( | ||
<> | ||
<Footer /> | ||
</> | ||
) | ||
); | ||
} | ||
|
||
export default Page | ||
export default Page; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,5 @@ export function CloudIcon() { | |
fill-opacity="0.9" | ||
/> | ||
</svg> | ||
) | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -277,5 +277,5 @@ export default function FaqLogo() { | |
</clipPath> | ||
</defs> | ||
</svg> | ||
) | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,5 @@ export default function MinusIcon() { | |
fill="white" | ||
/> | ||
</svg> | ||
) | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,5 @@ export default function MinusIcon() { | |
fill="#1D1E25" | ||
/> | ||
</svg> | ||
) | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,5 @@ export default function InputIcon() { | |
fill="white" | ||
/> | ||
</svg> | ||
) | ||
); | ||
} |
Oops, something went wrong.