Skip to content

Commit

Permalink
Home title clipping fixed, links fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanpoland committed Oct 26, 2024
1 parent 3c8d41a commit 9c8a8e9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function Home() {
</div>

<div className="relative z-10 text-center px-4">
<h1 className="text-4xl md:text-7xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-400">
<h1 className="text-4xl md:text-7xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r p-5 from-blue-400 to-purple-400">
Build Amazing Games at Light Speed
</h1>

Expand Down
2 changes: 1 addition & 1 deletion components/layout/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const Header = () => {
{/* Call to Action Buttons */}
<div className="flex items-center gap-4">
<a
href="https://github.com/pulsar-engine"
href="https://github.com/Far-Beyond-Pulsar/Pulsar-Engine"
target="_blank"
rel="noopener noreferrer"
className="text-neutral-300 hover:text-neutral-100 transition-colors"
Expand Down
14 changes: 7 additions & 7 deletions components/layout/SocialLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ import {

export const SocialLinks = () => (
<div className="flex gap-4 pt-2">
<SocialIcon href="https://github.com/pulsar-engine" icon={<IconBrandGithub />} label="GitHub" />
<SocialIcon href="https://discord.gg/pulsar-engine" icon={<IconBrandDiscord />} label="Discord" />
<SocialIcon href="https://x.com/PulsarEngine" icon={<IconBrandX />} label="X (Twitter)" />
<SocialIcon href="https://youtube.com/@PulsarEngine" icon={<IconBrandYoutube />} label="YouTube" />
<SocialIcon href="https://twitch.tv/PulsarEngine" icon={<IconBrandTwitch />} label="Twitch" />
<SocialIcon href="https://linkedin.com/company/pulsar-engine" icon={<IconBrandLinkedin />} label="LinkedIn" />
<SocialIcon href="https://reddit.com/r/PulsarEngine" icon={<IconBrandReddit />} label="Reddit" />
<SocialIcon href="https://github.com/Far-Beyond-Pulsar/Pulsar-Engine" icon={<IconBrandGithub />} label="GitHub" />
<SocialIcon href="https://discord.gg/NM4awJWGWu" icon={<IconBrandDiscord />} label="Discord" />
<SocialIcon href="#" icon={<IconBrandX />} label="X (Twitter)" />
<SocialIcon href="#" icon={<IconBrandYoutube />} label="YouTube" />
<SocialIcon href="#" icon={<IconBrandTwitch />} label="Twitch" />
<SocialIcon href="#" icon={<IconBrandLinkedin />} label="LinkedIn" />
<SocialIcon href="#" icon={<IconBrandReddit />} label="Reddit" />
</div>
);

Expand Down

0 comments on commit 9c8a8e9

Please sign in to comment.