Files
stats/apps/public/src/app/tools/ip-lookup/layout.tsx
Carl-Gerhard Lindesvärd 33431510b4 public: seo
2026-03-17 13:12:47 +01:00

18 lines
529 B
TypeScript

import { getPageMetadata } from '@/lib/metadata';
import type { Metadata } from 'next';
export const metadata: Metadata = getPageMetadata({
url: '/tools/ip-lookup',
title: 'Free IP Address Lookup — Geolocation, ISP & ASN',
description:
'Instantly look up any IP address. Get country, city, region, ISP, ASN, and coordinates in seconds. Free tool, no signup required, powered by MaxMind GeoLite2.',
});
export default function IPLookupLayout({
children,
}: {
children: React.ReactNode;
}) {
return children;
}