1
0
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-12-12 20:46:52 +01:00

refactor: components struture

This commit is contained in:
2024-07-31 11:41:39 +02:00
parent ceeeb2f9c5
commit b5c50728de
72 changed files with 122 additions and 114 deletions

View File

@@ -0,0 +1,27 @@
import { Section, SectionContent } from "../../Layout/Section/Section"
import { AboutDescription } from "./AboutDescription"
import { AboutIntroduction } from "./AboutIntroduction"
import { AboutList } from "./AboutList/AboutList"
import { AboutLogo } from "./AboutLogo"
import { SocialMediaList } from "./SocialMediaList/SocialMediaList"
export interface AboutProps {}
export const About: React.FC<AboutProps> = () => {
return (
<Section verticalSpacing horizontalSpacing id="about">
<SectionContent shadowContainer>
<div className="flex flex-col items-center justify-center md:flex-row md:pt-10">
<AboutLogo />
<div>
<AboutIntroduction />
<AboutList />
<AboutDescription />
</div>
</div>
<SocialMediaList />
</SectionContent>
</Section>
)
}