diff --git a/app/sitemap.ts b/app/sitemap.ts index 9c84610..7069b4b 100644 --- a/app/sitemap.ts +++ b/app/sitemap.ts @@ -35,12 +35,6 @@ export default function sitemap(): MetadataRoute.Sitemap { changeFrequency: 'weekly', priority: 0.9, }, - { - url: `${baseUrl}/solana-memecoins`, - lastModified: currentDate, - changeFrequency: 'weekly', - priority: 0.9, - }, { url: `${baseUrl}/hackathon`, lastModified: currentDate, diff --git a/app/solana-memecoins/page.tsx b/app/solana-memecoins/page.tsx deleted file mode 100644 index 1a8b73f..0000000 --- a/app/solana-memecoins/page.tsx +++ /dev/null @@ -1,308 +0,0 @@ -import type { Metadata } from "next" -import Link from "next/link" -import { Button } from "@/components/ui/button" -import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" -import { Badge } from "@/components/ui/badge" -import { TrendingUp, Zap, Shield, Gamepad2, DollarSign, Users, Star, ArrowRight } from "lucide-react" -import Navbar from "@/components/Navbar" -import Script from 'next/script' - -export const metadata: Metadata = { - title: 'Solana Memecoins Guide | GUD TEK Premium Tech | Best SOL Tokens', - description: 'Complete guide to Solana memecoins featuring GUD TEK - premium memecoin with good tech, gaming utilities, and strong community. Learn about the best Solana tokens.', - keywords: [ - 'solana memecoins', 'solana memecoin', 'gud tek', 'good tech', 'premium tech', - 'best solana tokens', 'solana tokens', 'memecoin with utility', 'sol memecoins', - 'bonk solana', 'solana gaming tokens', 'defi memecoins', 'solana ecosystem' - ], - openGraph: { - title: 'Solana Memecoins Guide | GUD TEK Premium Tech', - description: 'Discover the best Solana memecoins featuring premium tech and real utility.', - type: 'website', - }, - alternates: { - canonical: 'https://gudtek.club/solana-memecoins', - }, -} - -export default function SolanaMemecoinsPage() { - const memecoinsSchema = { - "@context": "https://schema.org", - "@type": "Article", - "headline": "Complete Guide to Solana Memecoins with Good Tech", - "description": "Comprehensive guide to the best Solana memecoins, featuring premium technology and real utility", - "author": { - "@type": "Organization", - "name": "GUD TEK Team" - }, - "publisher": { - "@type": "Organization", - "name": "GUD TEK", - "logo": { - "@type": "ImageObject", - "url": "https://gudtek.club/images/gudtek-logo.png" - } - }, - "mainEntityOfPage": { - "@type": "WebPage", - "@id": "https://gudtek.club/solana-memecoins" - }, - "about": [ - { - "@type": "Thing", - "name": "Solana Memecoins" - }, - { - "@type": "CryptoCurrency", - "name": "GUDTEK", - "alternateName": "$GUDTEK" - } - ] - } - - const topMemecoins = [ - { - name: "GUD TEK", - symbol: "$GUDTEK", - description: "First project on BONK hackathon launchpad with premium tech", - features: ["Gaming Utilities", "DeFi Integration", "Community Governance", "Premium Tech"], - status: "Featured", - color: "from-orange-500 to-yellow-500" - }, - { - name: "BONK", - symbol: "$BONK", - description: "The original Solana community memecoin", - features: ["Community Focused", "Ecosystem Partnerships", "Burn Mechanics", "Wide Adoption"], - status: "Established", - color: "from-red-500 to-pink-500" - }, - { - name: "SAMO", - symbol: "$SAMO", - description: "Solana's native memecoin with strong community", - features: ["Long History", "NFT Integration", "Staking Rewards", "Community DAOs"], - status: "Veteran", - color: "from-blue-500 to-purple-500" - } - ] - - return ( - <> -