diff --git a/app/globals.css b/app/globals.css index ef7b1ec..096c7f4 100644 --- a/app/globals.css +++ b/app/globals.css @@ -71,11 +71,6 @@ @apply border-border; } - html { - /* Responsive font sizing: scales between 16px and 20px based on viewport width */ - /* font-size: clamp(16px, 0.9vw + 0.5rem, 20px); */ - } - body { @apply bg-background text-foreground; overflow-x: hidden; @@ -111,7 +106,6 @@ font-family: var(--font-poppins), 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; } - /* Ensure consistent font sizes across different screen sizes */ @media (min-width: 640px) { h1 { font-size: 2.25rem; @@ -158,7 +152,6 @@ @apply bg-clip-text text-transparent bg-gradient-to-r from-primary to-purple-500 dark:from-purple-400 dark:to-fuchsia-500; } - /* 3D Effects */ .card-3d { @apply transform-gpu transition-all duration-300 ease-out; box-shadow: @@ -335,7 +328,6 @@ hsl(var(--background)); } - /* Ensure font sizes are consistent */ .text-xs { font-size: 0.75rem !important; line-height: 1rem !important; @@ -389,7 +381,6 @@ @apply bg-primary; } -/* Custom animations */ @keyframes blob { 0% { transform: translate(0px, 0px) scale(1); @@ -417,24 +408,19 @@ animation-delay: 4s; } -/* Glass effect */ .glass { @apply bg-background/50 backdrop-blur-sm border-primary/20; } -/* Gradient text */ .gradient-text { @apply bg-clip-text text-transparent bg-gradient-to-r from-primary to-purple-500 dark:from-purple-400 dark:to-fuchsia-500; } -/* Button styles */ .btn-gradient { @apply bg-gradient-to-r from-primary to-purple-500 text-white hover:opacity-90 transition-opacity dark:from-purple-400 dark:to-fuchsia-500; } -/* RainbowKit styling - Light mode defaults */ :root { - /* Light mode RainbowKit colors */ --rk-colors-connectButtonBackground: rgba(255, 255, 255, 0.9); --rk-colors-connectButtonBackgroundError: rgba(255, 255, 255, 0.9); --rk-colors-connectButtonInnerBackground: rgba(255, 255, 255, 0.95); @@ -442,7 +428,6 @@ --rk-colors-connectButtonTextError: rgb(30, 30, 30); } -/* Light mode button styling - using :not(.dark) to target light mode */ :root:not(.dark) [data-rk] button[data-testid="rk-connect-button"] { @apply bg-white/90 border-gray-200/80 hover:bg-white/95 backdrop-blur-sm; color: rgb(30, 30, 30) !important; @@ -456,7 +441,6 @@ color: rgb(30, 30, 30) !important; } -/* Dark mode RainbowKit overrides */ .dark { --rk-colors-connectButtonBackground: rgba(30, 30, 30, 0.9); --rk-colors-connectButtonBackgroundError: rgba(30, 30, 30, 0.9); @@ -474,7 +458,6 @@ @apply bg-gray-800/90 border-gray-700/80 hover:bg-gray-800/95 backdrop-blur-sm; } -/* Light mode specific styles */ .light { .glass { @apply bg-white/80 backdrop-blur-sm border-gray-200; diff --git a/app/layout.tsx b/app/layout.tsx index 9ba41b7..bb54971 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -5,6 +5,8 @@ import { ThemeProvider } from '../providers/theme-provider' import { Header } from '../components/Header' import Footer from '../components/Footer' +const siteUrl = new URL('https://hodlcoin.co.in') + const poppins = Poppins({ subsets: ['latin'], weight: ['300', '400', '500', '600', '700', '800', '900'], @@ -14,8 +16,8 @@ const poppins = Poppins({ }) export const metadata: Metadata = { - title: 'hodlCoin Staking Platform | Self-Stabilizing Staking Vaults', - description: 'Self-Stabilizing Staking vaults with price stability mechanisms designed to increase value over time. Stake your tokens on EVM chains, Ergo, or Alephium. Unstaking fees benefit vault creators and long-term stakers.', + title: 'hodlCoin | Self-Stabilizing Staking Vaults', + description: 'Stake in self-stabilizing vaults designed to protect value over time. Earn yield across EVM chains, Ergo, and Alephium—while unstaking fees reward long-term stakers and vault creators.', keywords: [ 'hodlCoin', 'staking', @@ -34,31 +36,31 @@ export const metadata: Metadata = { authors: [{ name: 'Stability Nexus' }], creator: 'Stability Nexus', publisher: 'Stability Nexus', - metadataBase: new URL('https://hodlcoin.co.in'), + metadataBase: siteUrl, alternates: { canonical: '/', }, openGraph: { type: 'website', locale: 'en_US', - url: 'https://hodlcoin.co.in', - siteName: 'hodlCoin Staking Platform', - title: 'hodlCoin Staking Platform | Self-Stabilizing Staking Vaults', - description: 'Self-Stabilizing Staking vaults with price stability mechanisms designed to increase value over time. Stake your tokens on EVM chains, Ergo, or Alephium. Unstaking fees benefit vault creators and long-term stakers.', + url: siteUrl, + siteName: 'hodlCoin', + title: 'hodlCoin | Self-Stabilizing Staking Vaults', + description: 'Stake in self-stabilizing vaults designed to protect value over time. Earn yield across EVM chains, Ergo, and Alephium—while unstaking fees reward long-term stakers and vault creators.', images: [ { - url: '/hodlcoin.png', - width: 1200, - height: 630, - alt: 'hodlCoin Logo - Self-Stabilizing Staking Platform', + url: new URL('/hodlcoin.png', siteUrl), + width: 2000, + height: 1730, + alt: 'hodlCoin logo', }, ], }, twitter: { card: 'summary_large_image', - title: 'hodlCoin Staking Platform | Self-Stabilizing Staking Vaults', - description: 'Self-Stabilizing Staking vaults with price stability mechanisms designed to increase value over time. Stake on EVM chains, Ergo, or Alephium.', - images: ['/hodlcoin.png'], + title: 'hodlCoin | Self-Stabilizing Staking Vaults', + description: 'Stake in self-stabilizing vaults designed to protect value over time. Earn yield across EVM chains, Ergo, and Alephium.', + images: [new URL('/hodlcoin.png', siteUrl)], creator: '@StabilityNexus', site: '@StabilityNexus', }, @@ -93,8 +95,7 @@ export default function RootLayout({ }) { return ( - {/* Fonts are now loaded exclusively through `next/font` */} -
+