Files
TorrentMax/app/app.vue
Mohammad Mahdi 5cbd1f8761 feat: Update index page UI and fix file permissions
- Add Arctic Lights background with radial gradient to index.vue
- Make multiple app files executable (changed modes from 644 to 755)
- Update dependencies in package-lock.json (browserslist, postcss-selector-parser, etc.) for latest versions and potential bug fixes
2025-12-03 21:56:48 +03:30

25 lines
1.0 KiB
Vue
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<script setup lang="ts">
import { Analytics } from "@vercel/analytics/nuxt";
useSeoMeta({
title: "TorrentMax Enrich Your Magnet Links with Trackers Instantly",
description:
"Boost torrent performance with TorrentMax. Paste any magnet link and instantly enrich it with the latest high-quality trackers for faster peer discovery.",
ogTitle: "TorrentMax Enrich Your Magnet Links with Trackers Instantly",
ogDescription:
"Paste a magnet link and let TorrentMax supercharge it with fresh trackers. Improve availability, speed up downloads, and get the best torrenting experience.",
ogType: "website",
ogUrl: "https://notyet.com",
ogImage: "https://nothet.com/og-image.png",
twitterCard: "summary_large_image",
twitterTitle: "TorrentMax Enrich Your Magnet Links with Trackers Instantly",
twitterDescription:
"TorrentMax enriches your magnet links with the latest trackers for maximum speed and availability.",
twitterImage: "https://notyet.com/og-image.png",
});
</script>
<template>
<Analytics />
<NuxtPage />
</template>