hangerthem.com/components/techstack.tsx
2024-02-06 14:16:30 +01:00

45 lines
793 B
TypeScript

"use client"
import styled from "styled-components"
import UnderConstruction from "@/icons/underConstruction"
const TechstackContainer = styled.section`
width: 100%;
height: 100vh;
padding: 2rem 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2rem;
svg {
width: 15rem;
height: 15rem;
}
`
const TechstackContent = styled.div`
width: 50%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
h2 {
font-size: 3rem;
font-weight: 600;
}
`
export default function Techstack() {
return (
<TechstackContainer>
<TechstackContent>
<h2>Tech Stack</h2>
</TechstackContent>
<UnderConstruction />
</TechstackContainer>
)
}