forked from didirus/AstralRinth
* refactor: migrate to common eslint+prettier configs * fix: prettier frontend * feat: config changes * fix: lint issues * fix: lint * fix: type imports * fix: cyclical import issue * fix: lockfile * fix: missing dep * fix: switch to tabs * fix: continue switch to tabs * fix: rustfmt parity * fix: moderation lint issue * fix: lint issues * fix: ui intl * fix: lint issues * Revert "fix: rustfmt parity" This reverts commit cb99d2376c321d813d4b7fc7e2a213bb30a54711. * feat: revert last rs
32 lines
805 B
Vue
32 lines
805 B
Vue
<template>
|
|
<div class="page experimental-styles-within">
|
|
<h1 class="m-0 text-3xl font-extrabold">Changelog</h1>
|
|
<p class="my-3">Keep up-to-date on what's new with Modrinth.</p>
|
|
<NuxtPage />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const config = useRuntimeConfig()
|
|
|
|
useSeoMeta({
|
|
title: 'Modrinth Changelog',
|
|
ogTitle: 'Modrinth Changelog',
|
|
description: "Keep up-to-date on what's new with Modrinth.",
|
|
ogDescription: "Keep up-to-date on what's new with Modrinth.",
|
|
ogType: 'website',
|
|
ogImage: () => `${config.public.siteUrl}/news/changelog.webp`,
|
|
twitterCard: 'summary_large_image',
|
|
twitterImage: () => `${config.public.siteUrl}/news/changelog.webp`,
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.page {
|
|
padding: 1rem;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 56rem;
|
|
}
|
|
</style>
|