Skip to content

Commit

Permalink
Update meta keywords for better SEO; change headings from h2 to h1 fo…
Browse files Browse the repository at this point in the history
…r improved semantic structure
  • Loading branch information
ethn1ee committed Jan 24, 2025
1 parent 5029ee8 commit 4259982
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function RootLayout({ children }) {
/>
<meta
name="keywords"
content="Emory Hacks, hackathon, Emory University, coding, programming, innovation, Emory Hackathon, Atlanta Hackathon, Emory University"
content="Emory Hacks, hackathon, Emory University, coding, programming, innovation, Emory Hackathon, Atlanta, Emory University, Emory, software, contest, competition"
/>
<meta property="og:title" content="Emory Hacks 2025" />
<meta
Expand Down
8 changes: 4 additions & 4 deletions src/app/sections/0-landing/content.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Content = () => {
return (
<div className="absolute left-[8vw] top-[120px] sm:top-[14vh] xl:top-[100px] inline-block z-40">
{/* TITLE */}
<h2 className="text-[40px] sm:text-[8vw] font-bold leading-none drop-shadow-title">
<h1 className="text-[40px] sm:text-[8vw] font-bold leading-none drop-shadow-title">
<motion.div
initial={{ opacity: 0, y: -30 }}
animate={{ opacity: 1.01, y: 0 }}
Expand All @@ -31,17 +31,17 @@ const Content = () => {
>
2025
</motion.div>
</h2>
</h1>

{/* DATE */}
<motion.h2
<motion.h1
initial={{ opacity: 0, y: -30 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 1, delay: 3, ease: "easeOut" }}
className="mt-5 text-[22px] md:text-[3vw] font-bold text-white drop-shadow-title"
>
MAR 21 - MAR 23
</motion.h2>
</motion.h1>
</div>
);
};
Expand Down

0 comments on commit 4259982

Please sign in to comment.