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:
27
packages/ui/src/Home/About/About.tsx
Normal file
27
packages/ui/src/Home/About/About.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user