Skip to content

Commit

Permalink
refactor: streamline footer component layout and constants
Browse files Browse the repository at this point in the history
  • Loading branch information
charlottewiltshire0 committed Jan 9, 2025
1 parent 6efe6f6 commit a293718
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const Footer = () => {
))}
</div>
</div>
<div className="grid grid-cols-2 gap-16 lg:grid-cols-4">
<div className="grid grid-cols-2 gap-16 lg:grid-cols-3">
{footer.map((category) => (
<div key={category.title} className="text-sm">
<h3 className="font-medium text-white/80">
Expand Down
36 changes: 18 additions & 18 deletions constants/footer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,24 @@ export const footer: Footer[] = [
{ title: "resources.children.contact", href: "/contact" },
],
},
{
title: "betaPrograms.title",
children: [
{
title: "betaPrograms.children.launcher",
href: "https://github.com/Redot-Experimental/launcher",
},
{
title: "betaPrograms.children.academy",
href: links.academy,
newTab: true,
},
{
title: "betaPrograms.children.engineExperimental",
href: links.engineExperimental,
},
],
},
// {
// title: "betaPrograms.title",
// children: [
// {
// title: "betaPrograms.children.launcher",
// href: "https://github.com/Redot-Experimental/launcher",
// },
// {
// title: "betaPrograms.children.academy",
// href: links.academy,
// newTab: true,
// },
// {
// title: "betaPrograms.children.engineExperimental",
// href: links.engineExperimental,
// },
// ],
// },
{
title: "policies.title",
children: [
Expand Down

0 comments on commit a293718

Please sign in to comment.