Skip to content

Commit c55ca83

Browse files
committed
define /portfolio page
1 parent 27aa92c commit c55ca83

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

app/portfolio/globals.css

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+
}

app/portfolio/page.tsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
}

0 commit comments

Comments
 (0)