Skip to content

Commit

Permalink
chore: use section and header elements
Browse files Browse the repository at this point in the history
  • Loading branch information
enjidev committed Jan 11, 2023
1 parent 473bcc8 commit 0c49c5e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions apps/enji.dev/src/contents/index/CleanIntuitive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ function CleanIntuitive() {

return (
<>
<div className={clsx('mb-8')}>
<header className={clsx('mb-8')}>
<SectionTitle
title="Eye Catching, Modern & Minimalist Design."
caption="Clean & Intuitive"
description="Keep the User Interface clean with a modern touch without
compromising the User Experience."
/>
</div>
</header>
<SectionContent>
<div className={clsx('flex', 'lg:gap-12')}>
<div
Expand Down
4 changes: 2 additions & 2 deletions apps/enji.dev/src/contents/index/DetailOriented.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import SectionTitle from '@/components/sections/SectionTitle';

function DetailOriented() {
return (
<div className={clsx('mb-8')}>
<header className={clsx('mb-8')}>
<SectionTitle
title="Keen Eye for Spotting Small Details."
caption="Detail Oriented"
description="Awareness to ease of access, User Interface consistency, and improved User Experience."
/>
</div>
</header>
);
}

Expand Down
4 changes: 2 additions & 2 deletions apps/enji.dev/src/contents/index/PrettyOptimized.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import SectionTitle from '@/components/sections/SectionTitle';

function PrettyOptimized() {
return (
<div className={clsx('mb-8')}>
<header className={clsx('mb-8')}>
<SectionTitle
title="Comprehensible and Optimized Code."
caption="Pretty & Optimized"
description="Writing clean code is a top priority while keeping it as optimized as possible."
/>
</div>
</header>
);
}

Expand Down
12 changes: 6 additions & 6 deletions apps/enji.dev/src/contents/index/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ function IndexContents() {
<div className={clsx('-mt-12 mb-12', 'md:mt-0 md:mb-24')}>
<QuoteSection />
</div>
<div className={clsx('mb-12', 'lg:mb-24')}>
<section className={clsx('mb-12', 'lg:mb-24')}>
<CleanIntuitive />
</div>
<div className={clsx('mb-12', 'lg:mb-24')}>
</section>
<section className={clsx('mb-12', 'lg:mb-24')}>
<DetailOriented />
</div>
<div className={clsx('mb-12', 'lg:mb-24')}>
</section>
<section className={clsx('mb-12', 'lg:mb-24')}>
<PrettyOptimized />
</div>
</section>
</>
);
}
Expand Down

1 comment on commit 0c49c5e

@vercel
Copy link

@vercel vercel bot commented on 0c49c5e Jan 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

enjidev – ./

enjidev.vercel.app
enjidev-enjidev.vercel.app
enjidev-git-main-enjidev.vercel.app
www.enji.dev
enji.dev

Please sign in to comment.