Skip to content

Commit

Permalink
feat(pages): add location component
Browse files Browse the repository at this point in the history
  • Loading branch information
codingcodax committed Jul 19, 2024
1 parent eb8b716 commit 88d672d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/www/src/app/(main)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { Button } from '@acme/ui/Button';
import { projects } from '~/config/projects';
import { CodingHours } from './_components/CodingHours';
import { Hero } from './_components/Hero';
import { Location } from './_components/Location';
import {
Project,
ProjectContent,
Expand Down Expand Up @@ -56,9 +57,10 @@ const Home: NextPage = () => {
<SectionDescription>A sneak peek of who I am</SectionDescription>
</Section>

<div className='grid grid-cols-3 py-8'>
<div className='grid grid-cols-3'>
<TechStack />
<CodingHours />
<Location />
</div>
</div>
);
Expand Down

0 comments on commit 88d672d

Please sign in to comment.