diff --git a/src/lib/components/Quotes.js b/src/lib/components/Quotes.js deleted file mode 100755 index a56d110..0000000 --- a/src/lib/components/Quotes.js +++ /dev/null @@ -1,37 +0,0 @@ -export const quotes = [ - `Lt. Dixon Piper: -Why did he do it? Why did Cunth kill your wife? - -MacGruber: -To this day, I have no idea. We actually all went to college together. Believe it or not, we were very close friends. \nThen after graduation, he got engaged to her. He asked me to be his best man and right about that time, I started banging her and mowing her box. \nShe was actually the first person I felt comfortable enough around to let eat out my butt. \nAnyway, shortly thereafter, she left him for me. She was actually carrying his child at the time. I asked her to terminate it, obviously, so we could start fresh. And she agreed. We were so in love. \nAnd he took that from me. - -Lt. Dixon Piper: -That's really f***ed up. - -MacGruber: -Thanks.`, - - `MacGruber: -Looks like you're keeping your bod pretty tight. - -Frank Korver: -You're looking pretty good yourself. - -MacGruber: -Well, everday's a workout when you gotta carry around a 20 pound python in your jeans. - -Frank Korver: -You and your dick comments. - -MacGruber: -It's fun to say them. - -Frank Korver: -It's fun to hear them. - -MacGruber: -That's why I say them. - -Frank Korver: -And that's why I listen.` -] diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 082cb97..2fea2e4 100755 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -5,14 +5,7 @@ import './styles.css' import '@fontsource-variable/work-sans' import '@fontsource/ibm-plex-mono/500.css' - import { quotes } from '$lib/components/Quotes' import { getRandom } from '$lib/Helper.mjs' - - onMount(() => { - if (import.meta.env.PROD) { - console.log(getRandom(quotes)) - } - })