Skip to content

Instantly share code, notes, and snippets.

View rakib86's full-sized avatar
πŸ‘‘
No Limit

Rakibur Rahaman rakib86

πŸ‘‘
No Limit
View GitHub Profile
@rakib86
rakib86 / demo
Last active May 14, 2025 16:06
demo
import Link from 'next/link';
import type { Metadata } from 'next';
import { notFound } from 'next/navigation';
import { getSubdomainData } from '@/lib/subdomains';
import { protocol, rootDomain } from '@/lib/utils';
export async function generateMetadata({
params
}: {
params: Promise<{ subdomain: string }>;