import React from 'react'; import type { Metadata } from 'next'; import WiFiGenerator from './WiFiGenerator'; import { Wifi, Shield, Zap } from 'lucide-react'; export const metadata: Metadata = { title: 'Free WiFi QR Code Generator | Connect Instantly & Securely', description: 'Create a free QR code for your WiFi network. Instant connection for guests, 100% client-side security (your password never leaves your browser). No app needed.', alternates: { canonical: 'https://qrmaster.com/tools/wifi-qr-code', }, openGraph: { title: 'Free WiFi QR Code Generator | Connect Instantly', description: 'Share your WiFi without sharing your password. Generate a secure QR code in seconds.', type: 'website', } }; export default function WiFiQRCodePage() { return (
{/* HERO SECTION */}
{/* Background Decorative Elements */}
Free Tool

Secure WiFi QR Code
Generator

Connect guests instantly without typing passwords.
100% Client-side & Private.

100% Private
Instant Generation
Always Free
{/* GENERATOR APP SECTION */} {/* FAQ SECTION */}

Frequently Asked Questions

Everything you need to know about WiFi QR codes.

); } function FaqItem({ question, answer }: { question: string, answer: string }) { return (
{question}
{answer}
); }