Skip to content

Commit

Permalink
about section done
Browse files Browse the repository at this point in the history
  • Loading branch information
DTA32 committed Sep 23, 2023
1 parent 97aeefb commit 12bd2e7
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
Binary file added public/meh.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 28 additions & 1 deletion src/app/components/About.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
import Image from "next/image";

export default function About() {
return <section className="min-h-[90vh] bg-slate-900" id="about"></section>;
return (
<section
className="min-h-[90vh] bg-slate-900 flex flex-col lg:flex-row items-center justify-center px-8 md:px-16 xl:px-32 gap-16 lg:gap-20"
id="about"
>
<Image
src="/meh.jpg"
alt="meh"
width={480}
height={480}
className="h-auto max-h-[480px] w-[240px] sm:w-[300px] md:w-[360px] lg:w-[480px]"
/>
<div className="flex flex-col gap-8">
<h1 className="text-2xl text-3xl md:text-4xl">About Me</h1>
<p className="text-md sm:text-lg md:text-xl">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
</section>
);
}
6 changes: 4 additions & 2 deletions src/app/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
export default function Footer() {
return (
<footer className="flex flex-row justify-between items-center bg-slate-950 px-4 h-8">
<small>&#169; DTA32</small>
<small>end of page.</small>
<small>&#169; 2023 DTA32</small>
<small data-telurpaskah="not available yet, check again later">
end of page.
</small>
</footer>
);
}

0 comments on commit 12bd2e7

Please sign in to comment.