-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c45c26
commit 60def0e
Showing
3 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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&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'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |