Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(saas): saas web accessibility Improvement #37

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion starterkits/saas/src/app/(web)/_components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Balancer from "react-wrap-balancer";

export function WebFooter() {
return (
<div className="pb-0 sm:py-8 sm:px-4">
<div className="pb-0 sm:px-4 sm:py-8">
<footer className="container grid grid-cols-1 gap-8 border border-border bg-background p-8 sm:grid-cols-2 sm:rounded-lg">
<div className="grid place-content-between gap-2">
<div className="grid gap-2">
Expand All @@ -25,6 +25,7 @@ export function WebFooter() {
className: "w-6 h-6 fill-primary",
}}
/>
<span className="sr-only">Rapidlaunch logo</span>
</Link>
<Balancer as="p" className="text-muted-foreground">
{siteConfig.description}
Expand All @@ -40,6 +41,7 @@ export function WebFooter() {
})}
>
<BookOpenIcon className="h-4 w-4" />
<span className="sr-only">Docs</span>
</Link>
<Link
href={siteUrls.github}
Expand All @@ -51,6 +53,7 @@ export function WebFooter() {
rel="noreferrer"
>
<Icons.gitHub className="h-4 w-4" />
<span className="sr-only">Rapidlaunch github</span>
</Link>
<ThemeToggle />
</div>
Expand Down
1 change: 1 addition & 0 deletions starterkits/saas/src/app/(web)/_components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export function WebHeader() {

<Link href={siteUrls.home}>
<Icons.logo />
<span className="sr-only">Rapidlaunch logo</span>
</Link>
</div>

Expand Down
Loading