Skip to content

Commit

Permalink
feat: create "partners" page
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroAkbal committed Mar 16, 2022
1 parent 9a64eb5 commit 6b9ede3
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/layout/navigation/sidenav/SideNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ export default {
url: RouterHelper.generatePostsRouteWithDefaults(this.$nuxt.$store),
},
{ title: 'Faq', url: '/faq' },
{ title: 'Partners', url: '/partners' },
{ title: 'Usage', url: '/usage' },
{ title: 'About', url: '/about' },
{ title: 'Settings', url: '/settings' },
Expand Down
36 changes: 36 additions & 0 deletions pages/partners.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<template>
<main class="max-w-3xl min-h-screen p-4 mx-auto sm:p-6 lg:p-8">
<div class="space-y-4">
<ContentSeparator text="Friends of the Rule 34 App" title="Partners"/>

<ContentContainer
:links="[
{
text: 'theporndude.com',
href: 'https://theporndude.com',
},
]"
icon="bg-svg-star"
text="The Porn Dude lists the world's best porn sites."
title="ThePornDude"
/>
</div>
</main>
</template>

<script>
export default {
head() {
return {
title: "Partners",
meta: [
{
hid: "description",
name: "description",
content: "Friends of the Rule 34 App."
}
]
};
}
};
</script>

0 comments on commit 6b9ede3

Please sign in to comment.