Skip to content

Commit

Permalink
🦄 refactor(sections): reorder sections
Browse files Browse the repository at this point in the history
resolve #42
  • Loading branch information
allbertuu committed Sep 2, 2024
1 parent 4c1ddeb commit 221ff85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ function App() {

<main>
<IntroductionSection />
<AboutMeSection />
<SideProjectsSection />
<AboutMeSection />
</main>

<Footer />
Expand Down
2 changes: 1 addition & 1 deletion src/components/AboutMeSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const AboutMeSection = () => {
return (
<section
id="about-me"
className="bg-secondary overflow-hidden relative pb-16 pt-24 after:block after:absolute after:bottom-0 after:h-[2px] after:shadow-sm after:w-full after:bg-accent"
className="bg-secondary overflow-hidden relative pb-16 pt-24"
>
<div className="container mx-auto px-4 max-w-[64rem]">
<img
Expand Down
2 changes: 1 addition & 1 deletion src/components/SideProjectsSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ProjectCard } from '../ProjectCard';

export const SideProjectsSection = () => {
return (
<section id="projects" className="py-16 mt-6">
<section id="projects" className="py-16 mt-6 border-b-2 border-b-accent">
<div className="container mx-auto px-4">
<h2 className="section__title mx-auto originLeftReveal">
Meus projetos
Expand Down

0 comments on commit 221ff85

Please sign in to comment.