-
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
Showing
21 changed files
with
5,817 additions
and
7,114 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
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
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
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,40 +1,9 @@ | ||
<template> | ||
<div> | ||
<header-main /> | ||
<u-main class="bg-gray-100 dark:bg-gray-950 overlay flex flex-col w-full"> | ||
<div class="py-2 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto w-full flex-1"> | ||
<slot /> | ||
</div> | ||
</u-main> | ||
<layout-footer /> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
.gradient { | ||
position: absolute; | ||
inset: 0; | ||
pointer-events: none; | ||
background: radial-gradient(50% 50% at 50% 50%, rgb(var(--color-primary-500) / 0.25) 0, #FFF 100%); | ||
} | ||
.dark { | ||
.gradient { | ||
background: radial-gradient(50% 50% at 50% 50%, rgb(var(--color-primary-400) / 0.1) 0, rgb(var(--color-gray-950)) 100%); | ||
} | ||
} | ||
.overlay { | ||
background-size: 100px 100px; | ||
background-image: | ||
linear-gradient(to right, rgb(var(--color-gray-200)) 0.5px, transparent 0.5px), | ||
linear-gradient(to bottom, rgb(var(--color-gray-200)) 0.5px, transparent 0.5px); | ||
} | ||
.dark { | ||
.overlay { | ||
background-image: | ||
linear-gradient(to right, rgb(var(--color-gray-900)) 0.5px, transparent 0.5px), | ||
linear-gradient(to bottom, rgb(var(--color-gray-900)) 0.5px, transparent 0.5px); | ||
} | ||
} | ||
</style> |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<script setup lang="ts"> | ||
import type { NavItem } from '@nuxt/content' | ||
const navigation = inject<Ref<NavItem[]>>('navigation') | ||
</script> | ||
|
||
<template> | ||
<UContainer> | ||
<UPage> | ||
<template #left> | ||
<UAside> | ||
<UNavigationTree :links="mapContentNavigation(navigation[0].children)" /> | ||
</UAside> | ||
</template> | ||
|
||
<slot /> | ||
</UPage> | ||
</UContainer> | ||
</template> |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<script setup lang="ts"> | ||
import { withoutTrailingSlash } from 'ufo' | ||
definePageMeta({ | ||
layout: 'docs', | ||
}) | ||
const route = useRoute() | ||
const { toc, seo } = useAppConfig() | ||
const { data: page } = await useAsyncData(route.path, () => queryContent(route.path).findOne()) | ||
if (!page.value) | ||
throw createError({ statusCode: 404, statusMessage: 'Page not found', fatal: true }) | ||
const { data: surround } = await useAsyncData(`${route.path}-surround`, () => queryContent() | ||
.where({ _extension: 'md', navigation: { $ne: false } }) | ||
.only(['title', 'description', '_path']) | ||
.findSurround(withoutTrailingSlash(route.path))) | ||
useSeoMeta({ | ||
title: page.value.title, | ||
ogTitle: `${page.value.title} - ${seo?.siteName}`, | ||
description: page.value.description, | ||
ogDescription: page.value.description, | ||
}) | ||
defineOgImage({ | ||
component: 'OgTitleDesc', | ||
title: page.value.title, | ||
description: page.value.description, | ||
}) | ||
const headline = computed(() => findPageHeadline(page.value)) | ||
const links = computed(() => [toc?.bottom?.edit && { | ||
icon: 'i-heroicons-pencil-square', | ||
label: 'Edit this page', | ||
to: `${toc.bottom.edit}/${page?.value?._file}`, | ||
target: '_blank', | ||
}, ...(toc?.bottom?.links || [])].filter(Boolean)) | ||
</script> | ||
|
||
<template> | ||
<UPage> | ||
<UPageHeader | ||
:title="page.title" | ||
:description="page.description" | ||
:links="page.links" | ||
:headline="headline" | ||
/> | ||
|
||
<UPageBody prose> | ||
<ContentRenderer | ||
v-if="page.body" | ||
:value="page" | ||
/> | ||
|
||
<hr v-if="surround?.length"> | ||
|
||
<UContentSurround :surround="surround" /> | ||
</UPageBody> | ||
|
||
<template | ||
v-if="page.toc !== false" | ||
#right | ||
> | ||
<UContentToc | ||
title="Table of Contents" | ||
:links="page.body?.toc?.links" | ||
/> | ||
</template> | ||
</UPage> | ||
</template> |
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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: Tirzepatide | ||
description: Tirzepatide is a once-weekly, long-acting glucagon-like peptide-1 receptor agonist (GLP-1 RA) and glucose-dependent insulinotropic polypeptide (GIP) receptor agonist (GIPRA) in development for the treatment of type 2 diabetes. | ||
--- | ||
|
||
## title 1 | ||
|
||
## title 2 |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Cagrilintide | ||
description: 1000 Units/ml Injection, Solution | ||
--- | ||
|
||
## title 1 | ||
## title 2 |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: Retatrutide | ||
description: 100% natural, safe and effective weight loss supplement. | ||
--- | ||
|
||
## title 1 | ||
|
||
## title 2 |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
title: Peptides | ||
description: Learn about peptides, their structure, and their role in the body. | ||
--- | ||
|
||
::card-group | ||
::card | ||
--- | ||
title: Tirzepatide | ||
to: /peptides/tirzepatide | ||
--- | ||
Explore the benefits of Tirzepatide | ||
:: | ||
:: |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
title: Research |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Research | ||
description: fume.bio research documentation | ||
navigation: false | ||
--- | ||
|
||
::card-group | ||
::card | ||
--- | ||
title: Tirzepatide | ||
to: /peptides/tirzepatide | ||
--- | ||
Explore the benefits of Tirzepatide | ||
:: | ||
:: | ||
|
||
## title 2 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.