Browse Source

feat: update socials (#3)

Lucas Neves Pereira 1 month ago
parent
commit
84dc1f30f5
2 changed files with 4 additions and 7 deletions
  1. 0 3
      app/[locale]/(legal-and-payment)/layout.tsx
  2. 4 4
      src/features/layout/Footer.tsx

+ 0 - 3
app/[locale]/(legal-and-payment)/layout.tsx

@@ -15,9 +15,6 @@ export default function RouteLayout({ children, params: _ }: LayoutParams<Locale
       <main className="flex-1 px-4 py-12">
         <div className="mx-auto w-full max-w-4xl">{children}</div>
       </main>
-
-      {/* Pied de page */}
-      <Footer />
     </div>
   );
 }

+ 4 - 4
src/features/layout/Footer.tsx

@@ -6,14 +6,14 @@ import { Link } from "@/components/ui/link";
 
 const SOCIAL_LINKS = [
   {
-    href: "https://github.com/Vincenius/workout-lol",
+    href: "https://github.com/Snouzy/workout-cool",
     icon: Github,
     label: "GitHub",
   },
   {
-    href: "https://twitter.com/wweb_dev",
+    href: "https://x.com/snouzy_biceps",
     icon: Twitter,
-    label: "Twitter",
+    label: "Twitter/X",
   },
   {
     href: "mailto:info@workout.cool",
@@ -23,7 +23,7 @@ const SOCIAL_LINKS = [
 ];
 
 const NAVIGATION = (t: TFunction) => [
-  { name: t("commons.donate"), href: "https://ko-fi.com/workout_lol" },
+  { name: t("commons.donate"), href: "https://ko-fi.com/workoutcool" },
   { name: t("commons.about"), href: "/about" },
   { name: t("commons.privacy"), href: "/legal/privacy" },
 ];