Skip to content

Commit

Permalink
Fix favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsJorck committed Aug 25, 2024
1 parent 6c45c26 commit 60def0e
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
21 changes: 0 additions & 21 deletions app.vue
Original file line number Diff line number Diff line change
@@ -1,28 +1,7 @@
<template>
<Head>
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>Forsh Fitness - Personlig træning og coaching</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link rel="preconnect" href="https://beefit-tracker.s3.eu-west-2.amazonaws.com">
<link rel="preconnect" href="https://ajax.googleapis.com">


<link rel="icon" :href="`${baseUrl}/img/favicon/FF-Favicon-150x150.jpg`" sizes="32x32">
<link rel="icon" :href="`${baseUrl}/img/favicon/FF-Favicon-300x300.jpg`" sizes="192x192">
<link rel="apple-touch-icon" :href="`${baseUrl}/img/favicon/FF-Favicon-300x300.jpg`">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Recursive:slnt,wght,CASL,CRSV,[email protected],300..1000,0..1,0..1,0..1&amp;display=swap">
<meta name="msapplication-TileImage" :content="`${baseUrl}/img/favicon/FF-Favicon-300x300.jpg`">
<meta name="description"
content="Få en dedikeret coach, der deler dit ønske om forandring. Personlige planer tilpasset dig og din træningslokation, fokuseret på vægttab, muskelbygning, energi, sundhed og mental styrke.">
</Head>
<Menu />
<NuxtPage />
</template>
<script setup>
const baseUrl = process.env.NUXT_APP_BASE_URL ?? '';
</script>
<style>
body {
/* background-image: url('/img/image5-2-e1704805299149.jpeg');
Expand Down
19 changes: 19 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
title: 'Forsh Fitness - Personlig træning og coaching',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1, viewport-fit=cover' },
{ name: 'title', content: 'Forsh Fitness - Personlig træning og coaching' },
{ name: 'description', content: 'Få en dedikeret coach, der deler dit ønske om forandring. Personlige planer tilpasset dig og din træningslokation, fokuseret på vægttab, muskelbygning, energi, sundhed og mental styrke.' },
],
link: [
{ rel: 'icon', href: '/img/favicon/FF-Favicon-150x150.jpg', sizes: '32x32' },
{ rel: 'icon', href: '/img/favicon/FF-Favicon-300x300.jpg', sizes: '192x192' },
{ rel: 'apple-touch-icon', href: '/img/favicon/FF-Favicon-300x300.jpg' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Recursive:slnt,wght,CASL,CRSV,[email protected],300..1000,0..1,0..1,0..1&display=swap' },
{ rel: 'msapplication-TileImage', content: '/img/favicon/FF-Favicon-300x300.jpg' },
{ name: 'description', content: 'Få en dedikeret coach, der deler dit ønske om forandring. Personlige planer tilpasset dig og din træningslokation, fokuseret på vægttab, muskelbygning, energi, sundhed og mental styrke.' },
],
},
},
devtools: { enabled: true },
modules: ["@nuxt/image", "@nuxtjs/tailwindcss", "@nuxt/icon", "@nuxtjs/i18n"],
i18n: {
Expand Down
10 changes: 6 additions & 4 deletions pages/calorie-calculator.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<template>
<iframe src="https://api.ucalc.pro/api/444130?bg_color=transparent&TID=S1BeW0dc#https%3A%2F%2Fforshfitness.com%2Fcalorie-calculator%2F"
scrolling="no"
style="border: 0px; width: 100%; height: 2123px;"
frameborder="0"></iframe>
<div class="bg-black">

<iframe
src="https://api.ucalc.pro/api/444130?bg_color=transparent&TID=S1BeW0dc#https%3A%2F%2Fforshfitness.com%2Fcalorie-calculator%2F"
scrolling="no" style="border: 0px; width: 100%; height: 2123px;" frameborder="0"></iframe>
</div>
</template>

0 comments on commit 60def0e

Please sign in to comment.