-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from firehawk89/add-about-section
Add About Section
- Loading branch information
Showing
21 changed files
with
314 additions
and
111 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
raleway | ||
Bochkovskyi | ||
Bochkovskyi | ||
clsx | ||
Nextdotjs | ||
Tailwindcss |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
import Hero from '@/components/pages/hero/hero' | ||
import About from '@/components/sections/about' | ||
import Hero from '@/components/sections/hero/hero' | ||
|
||
export default function Home() { | ||
return <Hero /> | ||
return ( | ||
<> | ||
<Hero /> | ||
<About /> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import Content from '@/components/ui/content' | ||
import Heading from '@/components/ui/heading' | ||
import Technologies from '@/components/ui/technologies/technologies' | ||
import { cn } from '@/utils' | ||
import { FC } from 'react' | ||
|
||
const About: FC = () => { | ||
return ( | ||
<section | ||
className={cn('bg-light py-12 dark:bg-black md:py-20')} | ||
id="about-me" | ||
> | ||
<Content className="flex gap-6 md:gap-10"> | ||
<article> | ||
<Heading size="h2" variant="underline"> | ||
About Me | ||
</Heading> | ||
<div className="mt-6 space-y-4 font-medium md:text-xl"> | ||
<p> | ||
I'm a <strong>Front-End Developer</strong> specializing in | ||
React, Next.js, and Tailwind CSS, with a keen focus on crafting{' '} | ||
<b>responsive</b> and visually <b>stunning</b> web applications. | ||
</p> | ||
<p> | ||
I enjoy working closely with cross-functional teams, including | ||
designers and back-end developers, to{' '} | ||
<strong>transform ideas into reality</strong>. Clear | ||
communication, attention to detail, and a commitment to delivering{' '} | ||
<b>high-quality</b> code are values I uphold in my works. | ||
</p> | ||
<p> | ||
If you're in search of a developer who is <b>well-versed</b>{' '} | ||
in React, Next.js, and Tailwind CSS, and has a passion for | ||
crafting <b>responsive</b> and <b>user-centric</b> applications, | ||
I'm eager to contribute my skills to your projects. | ||
Let's collaborate and build digital experiences that leave a{' '} | ||
<b>lasting impression</b>! | ||
</p> | ||
</div> | ||
</article> | ||
<Technologies className="self-start" /> | ||
</Content> | ||
</section> | ||
) | ||
} | ||
|
||
export default About |
File renamed without changes.
22 changes: 10 additions & 12 deletions
22
src/components/pages/hero/hero.tsx → src/components/sections/hero/hero.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.