Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
78d996a989 | |||
f342b0fa25 | |||
8b57fd492d | |||
f8971e812e |
@ -80,17 +80,13 @@ export default function Club() {
|
|||||||
<TableCell>Vice President</TableCell>
|
<TableCell>Vice President</TableCell>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<TableLeftHeading>Tony Grosinger</TableLeftHeading>
|
<TableLeftHeading>Beth Gasser</TableLeftHeading>
|
||||||
<TableCell>Secretary</TableCell>
|
<TableCell>Secretary</TableCell>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<TableLeftHeading>Temporarily performed by Secretary</TableLeftHeading>
|
<TableLeftHeading>Tony Grosinger</TableLeftHeading>
|
||||||
<TableCell>Treasurer</TableCell>
|
<TableCell>Treasurer</TableCell>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<TableLeftHeading>Mark Gasser</TableLeftHeading>
|
|
||||||
<TableCell>Director</TableCell>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
<tr>
|
||||||
<TableLeftHeading>Leslie Brown</TableLeftHeading>
|
<TableLeftHeading>Leslie Brown</TableLeftHeading>
|
||||||
<TableCell>Director</TableCell>
|
<TableCell>Director</TableCell>
|
||||||
|
37
src/app/club/mailinglist.tsx
Normal file
37
src/app/club/mailinglist.tsx
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
export default function MailingListSignupForm(): React.JSX.Element {
|
||||||
|
return (<form method="post" action="https://lists.orcas.community/subscription/form" className="listmonk-form">
|
||||||
|
<div className="flex flex-col gap-y-2">
|
||||||
|
<h3 className="text-lg font-semibold text-gray-900">Join our mailing list</h3>
|
||||||
|
<input type="hidden" name="nonce" />
|
||||||
|
<div>
|
||||||
|
<label htmlFor="email" className="sr-only">Email</label>
|
||||||
|
<input
|
||||||
|
type="email"
|
||||||
|
name="email"
|
||||||
|
id="email"
|
||||||
|
className="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"
|
||||||
|
placeholder="you@example.com" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label htmlFor="name" className="sr-only">Name</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
name="name"
|
||||||
|
id="name"
|
||||||
|
className="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"
|
||||||
|
placeholder="Jane Doe" />
|
||||||
|
</div>
|
||||||
|
<input className="hidden" type="checkbox" name="l" checked value="ea5f1e67-2ff0-4762-8893-0645e93a8306" />
|
||||||
|
<div className="h-captcha flex justify-center" data-sitekey="77aeddb4-cfda-4a3e-b262-0288a4e4664a"></div>
|
||||||
|
<script src="https://js.hcaptcha.com/1/api.js" async defer></script>
|
||||||
|
<input
|
||||||
|
className="w-full rounded-md flex justify-center border border-transparent bg-indigo-600 px-4 py-2 text-sm font-medium text-white shadow-sm hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2"
|
||||||
|
id="submit"
|
||||||
|
type="submit"
|
||||||
|
value="Subscribe"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</form>);
|
||||||
|
}
|
@ -52,6 +52,13 @@ export default function Club() {
|
|||||||
{ ssr: false }
|
{ ssr: false }
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const MailingListSignupForm = dynamic(
|
||||||
|
() => {
|
||||||
|
return import("./mailinglist");
|
||||||
|
},
|
||||||
|
{ ssr: false }
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container className="mt-16 sm:mt-32">
|
<Container className="mt-16 sm:mt-32">
|
||||||
<div className="grid grid-cols-1 gap-y-16 lg:grid-cols-2 lg:grid-rows-[auto_1fr] lg:gap-y-12">
|
<div className="grid grid-cols-1 gap-y-16 lg:grid-cols-2 lg:grid-rows-[auto_1fr] lg:gap-y-12">
|
||||||
@ -94,15 +101,7 @@ export default function Club() {
|
|||||||
</div>
|
</div>
|
||||||
<div className="lg:pl-20">
|
<div className="lg:pl-20">
|
||||||
<ul role="list">
|
<ul role="list">
|
||||||
<SocialLink href="/WSCC-Membership-Form.pdf" icon={UserPlusIcon}>
|
<MailingListSignupForm />
|
||||||
Membership Form
|
|
||||||
</SocialLink>
|
|
||||||
<SocialLink href="https://groups.orcashub.org/invites/YkP79vjDtz" icon={AtSymbolIcon} className="mt-4">
|
|
||||||
Club Member Mailing List
|
|
||||||
</SocialLink>
|
|
||||||
<SocialLink href="https://groups.orcashub.org/invites/Lg87tP3G2V" icon={AtSymbolIcon} className="mt-4">
|
|
||||||
West Sound Neighbor to Neighbor Mailing List
|
|
||||||
</SocialLink>
|
|
||||||
<SocialLink
|
<SocialLink
|
||||||
href="mailto:contact@westsoundhall.org"
|
href="mailto:contact@westsoundhall.org"
|
||||||
icon={EnvelopeIcon}
|
icon={EnvelopeIcon}
|
||||||
|
@ -279,7 +279,7 @@ function CheckoutForm({
|
|||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<div className="rounded-md mb-3 px-3 pb-1.5 pt-2.5 shadow-sm ring-1 ring-inset ring-gray-200 focus-within:ring-2 focus-within:ring-indigo-600">
|
<div className="rounded-md mb-3 px-3 pb-1.5 pt-2.5 shadow-sm ring-1 ring-inset ring-gray-200 focus-within:ring-2 focus-within:ring-indigo-600">
|
||||||
<label htmlFor="name" className="block text-xs font-medium text-gray-900">
|
<label htmlFor="email" className="block text-xs font-medium text-gray-900">
|
||||||
Email
|
Email
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
|
BIN
src/app/news/2024-10-20-elections/N_Wall_Lower.jpg
Normal file
BIN
src/app/news/2024-10-20-elections/N_Wall_Lower.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 239 KiB |
BIN
src/app/news/2024-10-20-elections/N_Wall_Upper.jpg
Normal file
BIN
src/app/news/2024-10-20-elections/N_Wall_Upper.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 245 KiB |
44
src/app/news/2024-10-20-elections/page.mdx
Normal file
44
src/app/news/2024-10-20-elections/page.mdx
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import { ArticleLayout } from '@/components/ArticleLayout'
|
||||||
|
import {MdxImage as Image } from '@/components/MdxImage'
|
||||||
|
import wallUpper from './N_Wall_Upper.jpg'
|
||||||
|
import wallLower from './N_Wall_Lower.jpg'
|
||||||
|
|
||||||
|
export const article = {
|
||||||
|
author: 'Tony Grosinger',
|
||||||
|
date: '2024-10-20',
|
||||||
|
title: 'Election and Building Repairs',
|
||||||
|
description: "Board of director elections took place, as well as some updates on building maintenance.",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export const metadata = {
|
||||||
|
title: article.title,
|
||||||
|
description: article.description,
|
||||||
|
}
|
||||||
|
|
||||||
|
export default (props) => <ArticleLayout article={article} {...props} />
|
||||||
|
|
||||||
|
At the October potluck we accepted votes for the 2024-2025 Board of Directors. Between those present and votes emailed prior to the potluck, we had enough participants to make a quorum and approve the slate.
|
||||||
|
|
||||||
|
There are also several new updates related to hall maintenance. First, repairs to the north wall ar under way! This maintenance work was made possible by generous donations during the Spring Give Orcas campaign where we raised $10,000.
|
||||||
|
|
||||||
|
<div className="not-prose flex flex-col items-center">
|
||||||
|
<Image src={wallUpper} alt="Repairs to the upper portion of the north wall." />
|
||||||
|
<span className="mt-2 text-sm text-zinc-400">
|
||||||
|
Repairs to the upper portion of the north wall.
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="not-prose flex flex-col items-center">
|
||||||
|
<Image src={wallLower} alt="Repairs to the lower portion of the north wall." />
|
||||||
|
<span className="mt-2 text-sm text-zinc-400">
|
||||||
|
Repairs to the lower portion of the north wall.
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
By the end of the month this wall should have brand new siding that will keep out the rain and breeze.
|
||||||
|
|
||||||
|
We also learned this month that our well water is not potable. After working with multiple experts and performing several rounds of chlorination treatment of the well and storage tanks, it has been determined that the best route forward is likely to abandon this water system and to move towards joining West Sound Water Association.
|
||||||
|
|
||||||
|
There is still lots of discussion and planning necessary before we can even break ground on making the hook up, but every party is working very hard to restore drinkable water to the hall as soon as possible!
|
||||||
|
|
Reference in New Issue
Block a user