File tree Expand file tree Collapse file tree 2 files changed +49
-0
lines changed
Expand file tree Collapse file tree 2 files changed +49
-0
lines changed Original file line number Diff line number Diff line change 1+ @tailwind base;
2+ @tailwind components;
3+ @tailwind utilities;
4+
5+ @layer base {
6+ main {
7+ @apply min-h-dvh grid grid-cols-1 md:grid-cols-3 gap-8 md:divide-x;
8+ }
9+ h1 ,
10+ h2 ,
11+ h3 {
12+ @apply text-center;
13+ }
14+ h1 {
15+ @apply text-8xl font-extrabold;
16+ }
17+ h2 {
18+ @apply text-4xl font-bold;
19+ }
20+ h3 {
21+ @apply text-2xl font-bold;
22+ }
23+ a {
24+ @apply opacity-100;
25+ }
26+ svg {
27+ @apply inline;
28+ }
29+ }
Original file line number Diff line number Diff line change 1+ import "./globals.css" ;
2+ import About from "./components/About" ;
3+ import PortfolioFooter from "./components/PortfolioFooter" ;
4+ import PortfolioHeader from "./components/PortfolioHeader" ;
5+ import PortfolioNavigation from "./components/PortfolioNavigation" ;
6+ import Projects from "./components/Projects" ;
7+ import TechStack from "./components/TechStack" ;
8+
9+ export default async function PortfolioPage ( ) {
10+ return (
11+ < main >
12+ < PortfolioNavigation />
13+ < PortfolioHeader />
14+ < About />
15+ < TechStack />
16+ < Projects />
17+ < PortfolioFooter />
18+ </ main >
19+ ) ;
20+ }
You can’t perform that action at this time.
0 commit comments