mirror of
https://github.com/supabase/supabase.git
synced 2026-06-25 09:37:38 +08:00
* Add theme switcher * Update * Update * Fix docs * Update * Fix www * Componentize ThemeToggle * Remove unused TopBarRef, rename existing component * Update apps/www/pages/launch-week/6/index.tsx Co-authored-by: Greg Richardson <greg.nmr@gmail.com> * Update apps/docs/components/Navigation/NavigationMenu/TopNavBar.tsx Co-authored-by: Greg Richardson <greg.nmr@gmail.com> * Update apps/www/pages/launch-week/index.tsx Co-authored-by: Greg Richardson <greg.nmr@gmail.com> * Update apps/www/pages/launch-week/7/index.tsx Co-authored-by: Greg Richardson <greg.nmr@gmail.com> * Update apps/www/pages/launch-week/tickets/[username].tsx Co-authored-by: Greg Richardson <greg.nmr@gmail.com> * Update always-on darkmode pages * update * Prettier * Check resolved theme for images * use resolved theme * Fix customer stories * Update apps/docs/components/Navigation/NavigationMenu/TopNavBar.tsx Co-authored-by: Francesco Sansalvadore <f.sansalvadore@gmail.com> --------- Co-authored-by: Greg Richardson <greg.nmr@gmail.com> Co-authored-by: Francesco Sansalvadore <f.sansalvadore@gmail.com>
14 lines
231 B
TypeScript
14 lines
231 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="en">
|
|
<Head />
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|