added the 1689

This commit is contained in:
2025-03-20 14:04:40 -05:00
parent 51efa90b64
commit c27b228682
6 changed files with 1178 additions and 3 deletions
+6 -1
View File
@@ -1,5 +1,5 @@
import Link from 'next/link';
import React from 'react';
import Link from 'next/link';
const Footer: React.FC = () => {
const currentYear = new Date().getFullYear();
@@ -32,6 +32,11 @@ const Footer: React.FC = () => {
Archive
</Link>
</li>
<li>
<Link href="/confession" className="text-primary-300 hover:text-white">
1689 Confession
</Link>
</li>
<li>
<Link href="/resources" className="text-primary-300 hover:text-white">
Resources
+4 -1
View File
@@ -1,5 +1,5 @@
import Link from 'next/link';
import React from 'react';
import Link from 'next/link';
const Header: React.FC = () => {
return (
@@ -22,6 +22,9 @@ const Header: React.FC = () => {
<Link href="/archive" className="text-primary-700 hover:text-accent-dark">
Archive
</Link>
<Link href="/confession" className="text-primary-700 hover:text-accent-dark">
1689 Confession
</Link>
<Link href="/resources" className="text-primary-700 hover:text-accent-dark">
Resources
</Link>