Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKiwi committed Jan 16, 2024
1 parent c2b8ee4 commit a6d95e9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion public/como.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Header = () => {
<div className="header">
<div className="section">
<a href="/">
<img className="logo" src={logo} alt="uwucrew logo" />
<img className="logo" src={logo} alt="uwucrew logo" loading="eager" />
</a>
<div className="nav-items">
{navItems.map((navItem) => (
Expand All @@ -50,6 +50,7 @@ const Header = () => {
>
<img
className="header-hamburger-icon"
loading="eager"
src={hamburger}
alt="hamburger menu"
/>
Expand Down
4 changes: 2 additions & 2 deletions src/components/HeroContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const HeroContent = () => {
rel="noreferrer"
key={social.name}
>
<img className="social" src={social.image} alt={social.name} />
<img className="social" src={social.image} alt={social.name} loading="eager" />
</a>
))}
</div>
Expand All @@ -45,7 +45,7 @@ const HeroContent = () => {
rel="noreferrer"
key={social.name}
>
<img className="social" src={social.image} alt={social.name} />
<img className="social" src={social.image} alt={social.name} loading="eager"/>
</a>
))}
</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/Team.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ const Team = () => {
<img
src={member.image}
alt={member.name}
loading="eager"
className="team-member-image"
/>
{member.deriv ? (
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const { title } = Astro.props;
<SEOMetadata
siteName={'uwucrew'}
title={'Welcome to uwucrew! A global anime art community'}
description={'Immerse yourself into the future of anime art ✨ Become part of a global effort to empower creativity 🎨🌈 Join the uwucrew community to connect with artists and fans!'}
description={'Immerse yourself into the future of anime art ✨ Become part of a global effort to empower creativity 🎨🌈 Connect with others inspired by anime!'}
image={'/og-image.webp'}
favicon={'/favicon.ico'}
author="uwucrew"
Expand Down

0 comments on commit a6d95e9

Please sign in to comment.