Skip to content

Commit

Permalink
feat: add favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
twlite committed Dec 7, 2024
1 parent c789d98 commit 5cb8282
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
Binary file added apps/website/app/favicon.ico
Binary file not shown.
5 changes: 1 addition & 4 deletions apps/website/app/layout.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,10 @@ export const baseOptions: BaseLayoutProps = {
url: '/community',
active: 'url',
},
{
text: 'GitHub',
url: 'https://github.com/Androz2091/discord-player',
},
{
text: 'Discord',
url: DISCORD_INVITE,
},
],
githubUrl: 'https://github.com/Androz2091/discord-player',
};
16 changes: 8 additions & 8 deletions apps/website/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import { Inter } from 'next/font/google';
import type { ReactNode } from 'react';

const inter = Inter({
subsets: ['latin'],
subsets: ['latin'],
});

export default function Layout({ children }: { children: ReactNode }) {
return (
<html lang="en" className={inter.className} suppressHydrationWarning>
<body className="flex flex-col min-h-screen">
<RootProvider>{children}</RootProvider>
</body>
</html>
);
return (
<html lang="en" className={inter.className} suppressHydrationWarning>
<body className="flex flex-col min-h-screen">
<RootProvider>{children}</RootProvider>
</body>
</html>
);
}
4 changes: 3 additions & 1 deletion apps/website/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createPreset } from 'fumadocs-ui/tailwind-plugin';

/** @type {import('tailwindcss').Config} */
export default {
const config = {
content: [
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
Expand All @@ -11,3 +11,5 @@ export default {
],
presets: [createPreset()],
};

export default config;

0 comments on commit 5cb8282

Please sign in to comment.