332 lines
18 KiB
TypeScript
332 lines
18 KiB
TypeScript
import React from 'react';
|
|
import type { Metadata } from 'next';
|
|
import TeamsGenerator from './TeamsGenerator';
|
|
import { Users, Shield, Zap, Video, MessageCircle, Download, Share2 } from 'lucide-react';
|
|
import { QRCodeSVG } from 'qrcode.react';
|
|
import { ToolBreadcrumb } from '@/components/seo/BreadcrumbSchema';
|
|
|
|
// SEO Optimized Metadata
|
|
export const metadata: Metadata = {
|
|
title: 'Free Microsoft Teams QR Code Generator | Join Meetings Instantly | QR Master',
|
|
description: 'Create a QR code for your Microsoft Teams meeting. Attendees scan to join instantly. Perfect for conference rooms, hybrid meetings, and event displays.',
|
|
keywords: ['teams qr code', 'microsoft teams meeting qr', 'join teams qr code', 'meeting room qr', 'teams invitation qr', 'hybrid meeting qr code'],
|
|
alternates: {
|
|
canonical: 'https://qrmaster.io/tools/teams-qr-code',
|
|
},
|
|
openGraph: {
|
|
title: 'Free Microsoft Teams QR Code Generator | QR Master',
|
|
description: 'Generate QR codes for Teams meetings. One scan to join instantly.',
|
|
type: 'website',
|
|
url: 'https://qrmaster.io/tools/teams-qr-code',
|
|
images: [{ url: '/og-teams-generator.png', width: 1200, height: 630 }],
|
|
},
|
|
twitter: {
|
|
card: 'summary_large_image',
|
|
title: 'Free Microsoft Teams QR Code Generator',
|
|
description: 'Create Teams meeting QR codes. Instant and free.',
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
};
|
|
|
|
// JSON-LD Structured Data
|
|
const jsonLd = {
|
|
'@context': 'https://schema.org',
|
|
'@graph': [
|
|
{
|
|
'@type': 'SoftwareApplication',
|
|
name: 'Microsoft Teams QR Code Generator',
|
|
applicationCategory: 'BusinessApplication',
|
|
operatingSystem: 'Web Browser',
|
|
offers: {
|
|
'@type': 'Offer',
|
|
price: '0',
|
|
priceCurrency: 'USD',
|
|
},
|
|
aggregateRating: {
|
|
'@type': 'AggregateRating',
|
|
ratingValue: '4.9',
|
|
ratingCount: '890',
|
|
},
|
|
description: 'Generate QR codes that let people join your Microsoft Teams meeting with one scan.',
|
|
},
|
|
{
|
|
'@type': 'HowTo',
|
|
name: 'How to Create a Microsoft Teams QR Code',
|
|
description: 'Create a QR code for joining Teams meetings.',
|
|
step: [
|
|
{
|
|
'@type': 'HowToStep',
|
|
position: 1,
|
|
name: 'Copy Meeting Link',
|
|
text: 'Copy the Teams meeting URL from your calendar invitation.',
|
|
},
|
|
{
|
|
'@type': 'HowToStep',
|
|
position: 2,
|
|
name: 'Paste Link',
|
|
text: 'Paste the meeting link into the generator.',
|
|
},
|
|
{
|
|
'@type': 'HowToStep',
|
|
position: 3,
|
|
name: 'Customize',
|
|
text: 'Choose Teams colors and add a frame label.',
|
|
},
|
|
{
|
|
'@type': 'HowToStep',
|
|
position: 4,
|
|
name: 'Download',
|
|
text: 'Download your QR code and display it in your meeting room.',
|
|
},
|
|
],
|
|
totalTime: 'PT30S',
|
|
},
|
|
{
|
|
'@type': 'FAQPage',
|
|
mainEntity: [
|
|
{
|
|
'@type': 'Question',
|
|
name: 'What happens when someone scans the QR code?',
|
|
acceptedAnswer: {
|
|
'@type': 'Answer',
|
|
text: 'Microsoft Teams opens and the user is prompted to join the meeting. Works on desktop, mobile, and web.',
|
|
},
|
|
},
|
|
{
|
|
'@type': 'Question',
|
|
name: 'Does it work for recurring meetings?',
|
|
acceptedAnswer: {
|
|
'@type': 'Answer',
|
|
text: 'Yes! If your recurring meeting uses the same meeting link, the QR code will work for all sessions.',
|
|
},
|
|
},
|
|
{
|
|
'@type': 'Question',
|
|
name: 'Can guests without Teams accounts join?',
|
|
acceptedAnswer: {
|
|
'@type': 'Answer',
|
|
text: 'Yes. Guests can join Teams meetings via the web browser without needing a Microsoft account.',
|
|
},
|
|
},
|
|
{
|
|
'@type': 'Question',
|
|
name: 'Is this for personal or business Teams?',
|
|
acceptedAnswer: {
|
|
'@type': 'Answer',
|
|
text: 'Both! Works with Microsoft Teams for work, school, and personal accounts.',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default function TeamsQRCodePage() {
|
|
return (
|
|
<>
|
|
<script
|
|
type="application/ld+json"
|
|
dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }}
|
|
/>
|
|
<ToolBreadcrumb toolName="Teams QR Code Generator" toolSlug="teams-qr-code" />
|
|
|
|
<div className="min-h-screen" style={{ backgroundColor: '#EBEBDF' }}>
|
|
|
|
{/* HERO SECTION */}
|
|
<section className="relative pt-20 pb-20 lg:pt-32 lg:pb-32 px-4 sm:px-6 lg:px-8 overflow-hidden" style={{ backgroundColor: '#6264A7' }}>
|
|
<div className="absolute inset-0 opacity-10">
|
|
<svg className="w-full h-full" viewBox="0 0 100 100" preserveAspectRatio="none">
|
|
<path d="M0 100 C 20 0 50 0 100 100 Z" fill="url(#grad1)" />
|
|
<defs>
|
|
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
<stop offset="0%" style={{ stopColor: 'white', stopOpacity: 1 }} />
|
|
<stop offset="100%" style={{ stopColor: 'white', stopOpacity: 0 }} />
|
|
</linearGradient>
|
|
</defs>
|
|
</svg>
|
|
</div>
|
|
|
|
<div className="max-w-7xl mx-auto grid lg:grid-cols-2 gap-12 items-center relative z-10">
|
|
<div className="text-center lg:text-left">
|
|
<div className="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-white/10 text-white/90 text-sm font-medium mb-6 backdrop-blur-sm border border-white/10 hover:bg-white/20 transition-colors cursor-default">
|
|
<span className="flex h-2 w-2 relative">
|
|
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-white opacity-75"></span>
|
|
<span className="relative inline-flex rounded-full h-2 w-2 bg-white"></span>
|
|
</span>
|
|
Free Tool — No Signup Required
|
|
</div>
|
|
|
|
<h1 className="text-4xl md:text-5xl lg:text-6xl font-extrabold text-white tracking-tight leading-tight mb-6">
|
|
Join Meetings with <br className="hidden lg:block" />
|
|
<span className="text-transparent bg-clip-text bg-gradient-to-r from-violet-200 to-white">Teams QR Codes</span>
|
|
</h1>
|
|
|
|
<p className="text-lg md:text-xl text-violet-100 max-w-2xl mx-auto lg:mx-0 mb-8 leading-relaxed">
|
|
Create QR codes for Microsoft Teams meetings. Attendees scan to join instantly.
|
|
<strong className="text-white block sm:inline mt-2 sm:mt-0"> Perfect for hybrid workplaces.</strong>
|
|
</p>
|
|
|
|
<div className="flex flex-wrap justify-center lg:justify-start gap-4 text-sm font-medium text-white/80">
|
|
<div className="flex items-center gap-2 bg-white/5 px-4 py-2.5 rounded-xl border border-white/5 backdrop-blur-sm">
|
|
<Video className="w-4 h-4 text-white" />
|
|
Meeting Links
|
|
</div>
|
|
<div className="flex items-center gap-2 bg-white/5 px-4 py-2.5 rounded-xl border border-white/5 backdrop-blur-sm">
|
|
<MessageCircle className="w-4 h-4 text-white" />
|
|
Chat Links
|
|
</div>
|
|
<div className="flex items-center gap-2 bg-white/5 px-4 py-2.5 rounded-xl border border-white/5 backdrop-blur-sm">
|
|
<Zap className="w-4 h-4 text-amber-300" />
|
|
Instant Join
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Visual Abstract */}
|
|
<div className="hidden lg:flex relative items-center justify-center min-h-[400px]">
|
|
<div className="absolute w-[500px] h-[500px] bg-violet-400/30 rounded-full blur-[100px] -top-20 -right-20 animate-pulse" />
|
|
|
|
<div className="relative w-80 h-96 bg-white/5 backdrop-blur-xl border border-white/20 rounded-3xl shadow-2xl flex flex-col items-center justify-center p-8 transform rotate-3 hover:rotate-0 transition-all duration-700 group">
|
|
<div className="absolute inset-0 bg-gradient-to-br from-white/10 to-transparent rounded-3xl" />
|
|
|
|
{/* Meeting Card Mock */}
|
|
<div className="w-full bg-white rounded-xl shadow-lg p-4 mb-6 relative overflow-hidden">
|
|
<div className="flex items-center gap-3 mb-3">
|
|
<div className="w-10 h-10 bg-[#6264A7] rounded-lg flex items-center justify-center">
|
|
<Users className="w-5 h-5 text-white" />
|
|
</div>
|
|
<div>
|
|
<div className="font-bold text-slate-900 text-sm">Team Standup</div>
|
|
<div className="text-xs text-slate-500">Daily at 9:00 AM</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex gap-2">
|
|
<div className="bg-green-100 text-green-700 text-xs px-2 py-1 rounded-full">Live Now</div>
|
|
<div className="bg-slate-100 text-slate-600 text-xs px-2 py-1 rounded-full">8 attending</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="w-48 h-48 bg-white rounded-xl p-2 shadow-inner relative overflow-hidden flex items-center justify-center">
|
|
<QRCodeSVG value="https://www.qrmaster.net" size={170} fgColor="#6264A7" level="Q" />
|
|
</div>
|
|
|
|
{/* Floating Badge */}
|
|
<div className="absolute -bottom-6 -left-6 bg-white py-3 px-5 rounded-xl shadow-xl flex items-center gap-3 transform transition-transform hover:scale-105 duration-300">
|
|
<div className="bg-violet-100 p-2 rounded-full">
|
|
<Video className="w-5 h-5 text-[#6264A7]" />
|
|
</div>
|
|
<div className="text-left">
|
|
<div className="text-[10px] text-slate-400 font-bold uppercase tracking-wider">Status</div>
|
|
<div className="text-sm font-bold text-slate-900">Ready to Join</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{/* GENERATOR SECTION */}
|
|
<section className="py-12 px-4 sm:px-6 lg:px-8 -mt-8">
|
|
<TeamsGenerator />
|
|
</section>
|
|
|
|
{/* HOW IT WORKS */}
|
|
<section className="py-16 px-4 sm:px-6 lg:px-8 bg-white">
|
|
<div className="max-w-4xl mx-auto">
|
|
<h2 className="text-3xl font-bold text-slate-900 text-center mb-12">
|
|
How Teams QR Codes Work
|
|
</h2>
|
|
|
|
<div className="grid md:grid-cols-4 gap-8">
|
|
<article className="text-center">
|
|
<div className="w-12 h-12 rounded-2xl bg-[#6264A7]/10 flex items-center justify-center mx-auto mb-4">
|
|
<Video className="w-6 h-6 text-[#6264A7]" />
|
|
</div>
|
|
<h3 className="font-bold text-slate-900 mb-2">1. Get Link</h3>
|
|
<p className="text-slate-600 text-xs leading-relaxed">Copy your Teams meeting URL.</p>
|
|
</article>
|
|
|
|
<article className="text-center">
|
|
<div className="w-12 h-12 rounded-2xl bg-[#6264A7]/10 flex items-center justify-center mx-auto mb-4">
|
|
<Shield className="w-6 h-6 text-[#6264A7]" />
|
|
</div>
|
|
<h3 className="font-bold text-slate-900 mb-2">2. Paste</h3>
|
|
<p className="text-slate-600 text-xs leading-relaxed">Paste into the generator.</p>
|
|
</article>
|
|
|
|
<article className="text-center">
|
|
<div className="w-12 h-12 rounded-2xl bg-[#6264A7]/10 flex items-center justify-center mx-auto mb-4">
|
|
<Download className="w-6 h-6 text-[#6264A7]" />
|
|
</div>
|
|
<h3 className="font-bold text-slate-900 mb-2">3. Download</h3>
|
|
<p className="text-slate-600 text-xs leading-relaxed">Save your QR code.</p>
|
|
</article>
|
|
|
|
<article className="text-center">
|
|
<div className="w-12 h-12 rounded-2xl bg-[#6264A7]/10 flex items-center justify-center mx-auto mb-4">
|
|
<Share2 className="w-6 h-6 text-[#6264A7]" />
|
|
</div>
|
|
<h3 className="font-bold text-slate-900 mb-2">4. Display</h3>
|
|
<p className="text-slate-600 text-xs leading-relaxed">Put in meeting rooms or invites.</p>
|
|
</article>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{/* FAQ SECTION */}
|
|
<section className="py-16 px-4 sm:px-6 lg:px-8" style={{ backgroundColor: '#EBEBDF' }}>
|
|
<div className="max-w-3xl mx-auto">
|
|
<h2 className="text-3xl font-bold text-slate-900 text-center mb-4">
|
|
Frequently Asked Questions
|
|
</h2>
|
|
<p className="text-slate-600 text-center mb-10">
|
|
Common questions about Teams QR codes.
|
|
</p>
|
|
|
|
<div className="space-y-4">
|
|
<FaqItem
|
|
question="What happens when someone scans the QR code?"
|
|
answer="Microsoft Teams opens and the user is prompted to join the meeting. Works on desktop, mobile, and web browser."
|
|
/>
|
|
<FaqItem
|
|
question="Does it work for recurring meetings?"
|
|
answer="Yes! If your recurring meeting uses the same meeting link, the QR code will work for all sessions."
|
|
/>
|
|
<FaqItem
|
|
question="Can guests without Teams accounts join?"
|
|
answer="Yes. Guests can join Teams meetings via the web browser without needing a Microsoft account."
|
|
/>
|
|
<FaqItem
|
|
question="What about meeting rooms with digital displays?"
|
|
answer="Perfect for that! Display the QR code on your room's screen so attendees can scan to join from their devices."
|
|
/>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
function FaqItem({ question, answer }: { question: string; answer: string }) {
|
|
return (
|
|
<details className="group bg-white rounded-xl shadow-sm border border-slate-200 overflow-hidden">
|
|
<summary className="flex items-center justify-between p-5 cursor-pointer list-none text-slate-900 font-semibold hover:bg-slate-50 transition-colors">
|
|
{question}
|
|
<span className="transition group-open:rotate-180 text-slate-400">
|
|
<svg fill="none" height="20" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" viewBox="0 0 24 24" width="20">
|
|
<path d="M6 9l6 6 6-6" />
|
|
</svg>
|
|
</span>
|
|
</summary>
|
|
<div className="text-slate-600 px-5 pb-5 pt-0 leading-relaxed text-sm">
|
|
{answer}
|
|
</div>
|
|
</details>
|
|
);
|
|
}
|