Skip to content

Commit

Permalink
Fix formatting errors for build process
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Cameron committed Dec 12, 2024
1 parent baa16f1 commit 2b6fb59
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
15 changes: 9 additions & 6 deletions src/app/contact/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const contactCards = [
"Email us with questions, requests for demos, and other communications.",
email: "avalon@iu.edu",
title: "Email",
},
},
{
description:
"Request to join Samvera's slack workspace and join the public #avalon channel. Questions welcome!",
Expand All @@ -27,14 +27,14 @@ const contactCards = [
url: "https://samvera.atlassian.net/wiki/spaces/AVALON/pages/1957954091/Avalon+User+Roundtable",
},
{
description: "All Avalon code is open source and development is tracked in Github.",
description:
"All Avalon code is open source and development is tracked in Github.",
title: "Developers",
label: "Avalon on Github",
url: "https://github.com/avalonmediasystem/avalon",
},
{
description:
"The mailing list for project announcements and discussion.",
{
description: "The mailing list for project announcements and discussion.",
email: "avalon-discuss-l@list.indiana.edu",
title: "Mailing List",
},
Expand All @@ -60,7 +60,10 @@ export default function ContactPage() {
Get in touch
</h2>
<p className="mt-4 leading-7 text-foreground-muted">
primary mailing list for announcements about upcoming developments, new releases, meeting and other important milestones during the development of Avalon Media System.
primary mailing list for announcements about upcoming
developments, new releases, meeting and other important
milestones during the development of Avalon Media
System.
</p>
</div>
<div className="grid grid-cols-1 gap-6 sm:grid-cols-2 lg:col-span-2 lg:gap-8">
Expand Down
4 changes: 2 additions & 2 deletions src/components/layout/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ const socials = [
href: "https://github.com/avalonmediasystem/avalon",
icon: GitHub,
},

];

export default function Footer() {
Expand Down Expand Up @@ -67,7 +66,8 @@ export default function Footer() {
))}
</div>
<p className="mt-10 text-center text-xs leading-5 text-foreground-muted">
&copy; {new Date().getFullYear()} Avalon Media System. All rights reserved.
&copy; {new Date().getFullYear()} Avalon Media System. All rights
reserved.
</p>
</div>
</footer>
Expand Down
6 changes: 5 additions & 1 deletion src/components/layout/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,11 @@ const Header = () => {
<div className="flex items-center justify-between">
<a href="#" className="-m-1.5 p-1.5">
<span className="sr-only">Avalon Media System</span>
<Image src={avalonLogo} alt="Avalon logo" className="h-8 w-auto" />
<Image
src={avalonLogo}
alt="Avalon logo"
className="h-8 w-auto"
/>
</a>
<button
type="button"
Expand Down

0 comments on commit 2b6fb59

Please sign in to comment.