diff --git a/.gitea/workflows/image-build.yaml b/.gitea/workflows/image-build.yaml index 4e9f60b..1c4916c 100644 --- a/.gitea/workflows/image-build.yaml +++ b/.gitea/workflows/image-build.yaml @@ -24,12 +24,6 @@ jobs: username: tgrosinger password: ${{ secrets.CONTAINER_REGISTRY_ACCESS_TOKEN }} - - name: Create env file for Nextjs verification step - run: | - echo "POSTMARK_SERVER_TOKEN=dummy-token" > /workspace/tgrosinger/west-sound-hall/.env - echo "NEXT_PUBLIC_SITE_URL=http://localhost:3000" >> /workspace/tgrosinger/west-sound-hall/.env - cat /workspace/tgrosinger/west-sound-hall/.env - - name: Build and push uses: docker/build-push-action@v4 with: diff --git a/src/app/club/page.tsx b/src/app/club/page.tsx index c3295e1..09d8a8d 100644 --- a/src/app/club/page.tsx +++ b/src/app/club/page.tsx @@ -34,7 +34,7 @@ function SocialLink({ } export const metadata: Metadata = { - title: 'History', + title: 'West Sound Community Club', description: 'The West Sound Community Club on Orcas Island.', } @@ -101,6 +101,9 @@ export default function Club() {
+

+ Join or Renew your Membership +

diff --git a/src/app/page.tsx b/src/app/page.tsx index 7eff214..ccf8b2c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,7 @@ -import Image, { type ImageProps } from 'next/image' +import Image from 'next/image' import clsx from 'clsx' -import { Button } from '@/components/Button' +import Link from 'next/link' import { Card } from '@/components/Card' import { Container } from '@/components/Container' import { CalendarDaysIcon, EnvelopeIcon } from '@heroicons/react/24/solid' @@ -13,6 +13,25 @@ import kitchenImage from '@/images/photos/kitchen.jpg' import { type BlogPostWithSlug, getAllBlogPosts } from '@/lib/articles' import { formatDate } from '@/lib/formatDate' +function LinkButton({ + href, + children, +}: { + href: string + children: React.ReactNode +}) { + return ( + + {children} + + ) +} + function Article({ article }: { article: BlogPostWithSlug }) { return ( @@ -30,30 +49,12 @@ function Article({ article }: { article: BlogPostWithSlug }) { function Newsletter() { return ( -
-

- - Stay up to date -

-

- Get notified about upcoming events and stay in touch with the community. -

-
- - +
+
+ Join or Renew your Membership + Rent the Hall
- +
) } diff --git a/src/app/rental/page.tsx b/src/app/rental/page.tsx index d9d5308..3cccbc6 100644 --- a/src/app/rental/page.tsx +++ b/src/app/rental/page.tsx @@ -32,9 +32,9 @@ function SocialLink({ } export const metadata: Metadata = { - title: 'History', + title: 'West Sound Hall Rental', description: - 'The history of the West Sound Community Hall on Orcas Island.', + 'Rental information for the West Sound Hall.', } export default function Rental() { diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 4d25d32..a598cce 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -102,6 +102,7 @@ function MobileNavigation(