Skip to content

Commit

Permalink
remove banner add padding
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-wigg committed Nov 10, 2023
1 parent ef2ac36 commit e035f0b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 41 deletions.
4 changes: 0 additions & 4 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import HomeTabs from "@/components/HomeTabs/HomeTabs";
import Profiles from "@/components/Profiles";
import ContactForm from "@/components/ContactForm";
import Testimonials from "@/components/Testimonials";
import ResumeDownload from "@/components/ResumeDownload";
import ProfessionalTimeline from "@/components/ProfessionalTimeline";
Expand All @@ -18,9 +17,6 @@ export default function Home() {
<div className="pb-4">
<Profiles />
</div>
<div className="pb-4">
<ContactForm show={true} />
</div>
<div className="pb-4">
<ProfessionalTimeline />
</div>
Expand Down
56 changes: 20 additions & 36 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,24 +95,6 @@ const Navbar = () => {
</span>
</Button>
</Link>
<Link href="/blog" legacyBehavior>
<Button
className={`w-full ${
pathname === "/blog" ? "text-yellow-400" : "dark:text-gray-100"
}`}
>
<BookOpenIcon className="h-6 w-6 text-yellow-400" />
<span className="ml-4">
{/* <span
className={`inline-block text-white dark:text-gray-300 rounded px-2 py-1 text-xs mr-2 transition duration-150 ease-in-out'bg-gray-200 dark:bg-gray-700 bg-gray-400
`}
>
b.
</span> */}
Blog
</span>
</Button>
</Link>
<Link href="/contact" legacyBehavior>
<Button
className={`w-full ${
Expand All @@ -122,17 +104,19 @@ const Navbar = () => {
}`}
>
<PencilSquareIcon className="h-6 w-6 text-yellow-400" />
<span className="ml-4">
{/* <span
className={`inline-block text-white dark:text-gray-300 rounded px-2 py-1 text-xs mr-2 transition duration-150 ease-in-out'bg-gray-200 dark:bg-gray-700 'bg-gray-400 bg-gray-300 dark:bg-zinc-900''
`}
>
c.
</span> */}
Contact
</span>
<span className="ml-4">Contact</span>
</Button>
</Link>
{/* <Link href="/blog" legacyBehavior>
<Button
className={`w-full ${
pathname === "/blog" ? "text-yellow-400" : "dark:text-gray-100"
}`}
>
<BookOpenIcon className="h-6 w-6 text-yellow-400" />
<span className="ml-4">Blog (soon)</span>
</Button>
</Link> */}
<div className="absolute bottom-8 left-1/2 transform -translate-x-1/2">
<ToggleTheme />
</div>
Expand Down Expand Up @@ -194,32 +178,32 @@ const Navbar = () => {
<span className="ml-4">Projects</span>
</Button>
</Link>
<Link href="/blog" legacyBehavior>
<Link href="/contact" legacyBehavior>
<Button
className={`w-full ${
pathname === "/blog"
pathname === "/contact"
? "text-yellow-400"
: "text-gray-900 dark:text-gray-100"
}`}
onClick={() => toggleMenu()}
>
<BookOpenIcon className="h-6 w-6 text-yellow-400" />
<span className="ml-4">Blog</span>
<PencilSquareIcon className="h-6 w-6 text-yellow-400" />
<span className="ml-4">Contact</span>
</Button>
</Link>
<Link href="/contact" legacyBehavior>
{/* <Link href="/blog" legacyBehavior>
<Button
className={`w-full ${
pathname === "/contact"
pathname === "/blog"
? "text-yellow-400"
: "text-gray-900 dark:text-gray-100"
}`}
onClick={() => toggleMenu()}
>
<PencilSquareIcon className="h-6 w-6 text-yellow-400" />
<span className="ml-4">Contact</span>
<BookOpenIcon className="h-6 w-6 text-yellow-400" />
<span className="ml-4">Blog</span>
</Button>
</Link>
</Link> */}
</div>
<div className="flex justify-end pt-4">
<ToggleTheme />
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProfessionalTimeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const ProfessionalTimeline = () => {

return (
<ContentCard
show={false}
show={true}
title="Professional Timeline"
content={
<ul className="space-y-4">
Expand Down

1 comment on commit e035f0b

@vercel
Copy link

@vercel vercel bot commented on e035f0b Nov 10, 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:

matt-wigg – ./

matt-wigg-matt-wigg.vercel.app
www.mattwigg.com
matt-wigg-git-main-matt-wigg.vercel.app
mattwigg.com

Please sign in to comment.