mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-02-15 06:09:15 +01:00
🔥
This commit is contained in:
commit
abfc3e09b9
21 changed files with 553 additions and 0 deletions
17
pages/_app.tsx
Normal file
17
pages/_app.tsx
Normal file
|
@ -0,0 +1,17 @@
|
|||
import { fas } from '@fortawesome/free-solid-svg-icons';
|
||||
import { fab } from '@fortawesome/free-brands-svg-icons';
|
||||
import { config, library } from '@fortawesome/fontawesome-svg-core';
|
||||
|
||||
import type { AppProps } from 'next/app'
|
||||
|
||||
import '../src/styles/globals.scss'
|
||||
import '@fortawesome/fontawesome-svg-core/styles.css'
|
||||
|
||||
library.add(fab, fas)
|
||||
config.autoAddCss = false
|
||||
|
||||
const MyApp = ({ Component, pageProps }: AppProps) => {
|
||||
return <Component {...pageProps} />
|
||||
}
|
||||
|
||||
export default MyApp
|
Loading…
Add table
Add a link
Reference in a new issue