From c8f10cb7f0b872eeb5690e9e3c5be6dd99e423d3 Mon Sep 17 00:00:00 2001 From: Danny Date: Wed, 7 Jan 2026 14:26:11 -0600 Subject: [PATCH 1/2] feat: add William Tyndale biography page Implement a new biography page accessible via /tyndale route that provides visitors with information about William Tyndale and his historic contribution to Bible translation. The page features a card-based layout with a brief summary of his life and work. Changes: - Create TyndalePage component with responsive card design - Add /tyndale route to application routing - Add "About Tyndale" link to landing page navigation --- src/App.tsx | 2 + src/components/landing/LandingNavigation.tsx | 6 ++ src/pages/TyndalePage.tsx | 77 ++++++++++++++++++++ 3 files changed, 85 insertions(+) create mode 100644 src/pages/TyndalePage.tsx diff --git a/src/App.tsx b/src/App.tsx index 8cff5db..b67b0b9 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,6 +3,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { Toaster } from 'sonner' import LandingPage from './pages/LandingPage' import ChatPage from './pages/ChatPage' +import TyndalePage from './pages/TyndalePage' const queryClient = new QueryClient() @@ -13,6 +14,7 @@ const App = () => ( } /> } /> + } /> diff --git a/src/components/landing/LandingNavigation.tsx b/src/components/landing/LandingNavigation.tsx index 404aae6..30dc053 100644 --- a/src/components/landing/LandingNavigation.tsx +++ b/src/components/landing/LandingNavigation.tsx @@ -13,6 +13,12 @@ const LandingNavigation = () => {
+ + About Tyndale +