mirror of
https://github.com/supabase/supabase.git
synced 2026-06-03 11:23:41 +08:00
wip <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit # Release Notes * **New Features** * Added a new Learn application offering foundational Supabase courses with interactive documentation * Courses include Architecture, Authentication, Data Fundamentals, Security, Storage, Realtime, and Edge Functions * Chapter tracking and progress indicators for course completions * Responsive sidebar navigation with search/command menu * Theme switching support (light, dark, classic dark modes) * Mobile-friendly course interface <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Alan Daniel <stylesshjs@gmail.com> Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
30 lines
1005 B
TypeScript
30 lines
1005 B
TypeScript
export function SiteFooter() {
|
|
return (
|
|
<footer className="py-6 px-4 md:px-8 md:py-0 mx-auto w-full max-w-site">
|
|
<div className="flex flex-col items-center justify-between gap-4 md:h-24 md:flex-row">
|
|
<p className="text-balance text-center text-sm leading-loose text-foreground-muted md:text-left">
|
|
Built by{' '}
|
|
<a
|
|
href="https://twitter.com/supabase"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
className="font-medium underline underline-offset-4 hover:text-foreground-lighter"
|
|
>
|
|
Supabase
|
|
</a>
|
|
. The source code is available on{' '}
|
|
<a
|
|
href="https://github.com/supabase/supabase/tree/master/apps/ui-library"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
className="font-medium underline underline-offset-4 hover:text-foreground-lighter"
|
|
>
|
|
GitHub
|
|
</a>
|
|
.
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|