docs: add new tools

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-12-10 13:20:28 +01:00
parent 9bedd39e48
commit ae383001bc
14 changed files with 3116 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
import { getPageMetadata } from '@/lib/metadata';
import type { Metadata } from 'next';
export const metadata: Metadata = getPageMetadata({
url: '/tools/ip-lookup',
title: 'IP Lookup - Free IP Address Geolocation Tool',
description:
'Find your IP address and get detailed geolocation information including country, city, ISP, ASN, and coordinates. Free IP lookup tool with map preview.',
});
export default function IPLookupLayout({
children,
}: {
children: React.ReactNode;
}) {
return children;
}