From d5b8e2f7410e27ee622d5828b4e38302c0c4159d Mon Sep 17 00:00:00 2001 From: SylvainP1 <5533467-SylvainP1@users.noreply.replit.com> Date: Wed, 15 Apr 2026 09:08:33 +0000 Subject: [PATCH] Add repository link and deployment date to the application footer Add footer to the layout component including a GitHub repository link and the deployment date. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 55837015-10e9-4be9-b857-7f5e6be73772 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: bd220250-ca9d-493a-9972-765935ee3c77 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/1cc377db-7ea0-49f2-97ce-c3e87e0228cc/55837015-10e9-4be9-b857-7f5e6be73772/CzGezQ7 Replit-Helium-Checkpoint-Created: true --- .../cra-app/src/components/layout/layout.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/artifacts/cra-app/src/components/layout/layout.tsx b/artifacts/cra-app/src/components/layout/layout.tsx index 31f2c2e..65e11e1 100644 --- a/artifacts/cra-app/src/components/layout/layout.tsx +++ b/artifacts/cra-app/src/components/layout/layout.tsx @@ -1,4 +1,8 @@ import { AppSidebar } from "./sidebar"; +import { Github } from "lucide-react"; + +const REPO_URL = "https://github.com/sylvainp/cra-app"; +const DEPLOY_DATE = "14 avril 2025"; export function AppLayout({ children }: { children: React.ReactNode }) { return ( @@ -8,6 +12,18 @@ export function AppLayout({ children }: { children: React.ReactNode }) {