-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from inove-jr/tailwind
Configurado o Tailwind com a identidade visual da empresa e a borda dos títulos
- Loading branch information
Showing
9 changed files
with
46 additions
and
10 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export const About = () => ( | ||
<section className='flex h-72 w-full items-center justify-center'> | ||
<h2>QUEM SOMOS?</h2> | ||
<h2 className="decorated-border">QUEM SOMOS?</h2> | ||
</section> | ||
); |
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,5 +1,5 @@ | ||
export const Contact = () => ( | ||
<section className='flex h-72 w-full items-center justify-center bg-i9-blue-900 text-i9-white-100'> | ||
<h2>CONTATE-NOS</h2> | ||
<h2 className="decorated-border">CONTATE-NOS</h2> | ||
</section> | ||
); |
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,5 +1,5 @@ | ||
export const Portfolio = () => ( | ||
<section className='flex h-72 w-full items-center justify-center bg-i9-blue-900 text-i9-white-100'> | ||
<h2>PORTFÓLIO</h2> | ||
<h2 className="decorated-border">PORTFÓLIO</h2> | ||
</section> | ||
); |
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
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { Kanit } from "next/font/google"; | ||
import localFont from "next/font/local"; | ||
|
||
export const kanit = Kanit({ | ||
weight: ["200", "400", "500", "700", "800"], | ||
style: ["normal", "italic"], | ||
subsets: ["latin"], | ||
display: "swap", | ||
variable: "--font-kanit", | ||
}); | ||
|
||
export const prime = localFont({ | ||
src: [ | ||
{ | ||
path: "./Prime-Regular.ttf", | ||
weight: "400", | ||
style: "normal", | ||
}, | ||
{ | ||
path: "./Prime-Light.ttf", | ||
weight: "200", | ||
style: "normal", | ||
}, | ||
], | ||
variable: "--font-prime", | ||
}); |
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