import React, { useEffect, useRef, useState } from "react"; import { ArrowRight, CheckCircle2, Globe, Search, Cpu, ShieldCheck, FileText, Mail, Zap, Send } from "lucide-react"; function SectionLabel({ children }) { return (
{children}
); } export default function App() { const [activeTab, setActiveTab] = useState('human'); const [formStatus, setFormStatus] = useState('idle'); const handleFormSubmit = (e) => { e.preventDefault(); setFormStatus('submitting'); // Simulate an API call / form submission setTimeout(() => setFormStatus('success'), 1500); }; const services = [ { title: "GEO Audit & Compliance", icon: , description: "A comprehensive review of your digital presence through the lens of machine agents and search engines.", bullets: [ "Semantic HTML & Schema gap analysis", "AODA/WCAG Accessibility compliance", "Entity relationship & authority mapping" ], }, { title: "Technical Implementation", icon: , description: "Hands-on restructuring of site architecture to transform presentation into high-liquidity data.", bullets: [ "Structured data & JSON-LD deployment", "Complex site migrations (Armour Valve Case)", "Navigation & hierarchy optimization" ], }, { title: "AI-Ready Strategy", icon: , description: "Building a roadmap for long-term citation authority in generative search environments.", bullets: [ "Truth-anchored brand messaging", "Machine-readable content frameworks", "Answer-engine optimization (AEO)" ], }, ]; const highlights = [ { title: "Master of Digital Media", org: "TMU", desc: "Specialized in communication technology and digital storytelling at the graduate level.", icon: }, { title: "Enterprise Implementation", org: "Armour Valve", desc: "Leading the transition of complex industrial data into structured, AI-ready web architecture.", icon: }, { title: "AODA Expert", org: "Ontario", desc: "Ensuring all technical strategy meets legal accessibility requirements for the Greater Toronto Area.", icon: } ]; return (
{/* Navigation */} {/* Hero Section */}
TORONTO-BASED GEO STRATEGY

From search engines
to answer engines.

I help technical brands in the GTA transition to Generative Engine Optimization (GEO)—ensuring expertise is readable by AI, trusted by humans, and findable by everyone.

Start Your Audit
Trusted By Brands Like Armour Valve NHK Japan

Technical Insight

"Traditional SEO focused on keywords. GEO focuses on entities and relationships. Your site must now act as a structured source of truth."

AN

Ali Noorani

GEO Strategist

{/* Dual Perspective Section */}
Two Audiences, One Strategy

The visual web is meeting the semantic web.

Empathy & Trust

Humans judge brands in milliseconds based on visual hierarchy, accessibility, and the confidence of presentation.

    {['Mobile-first responsive design', 'AODA compliance for inclusion', 'High-conversion UX flows'].map(item => (
  • {item}
  • ))}

Semantics & Entities

AI agents (LLMs) and search engines look for structured data patterns, semantic relationships, and technical metadata.

    {['JSON-LD & Schema.org markup', 'Semantic content hierarchy', 'Knowledge Graph integration'].map(item => (
  • {item}
  • ))}

The Synergy

My process doesn't choose between humans and machines. We build Data Liquidity: a state where content is so clear that it survives AI summarization while remaining persuasive to customers.

{/* Services Section */}
Our Services
{services.map((service, i) => (
{service.icon}

{service.title}

{service.description}

    {service.bullets.map((bullet, j) => (
  • {bullet}
  • ))}
))}
{/* Expertise & Grant Proof Section */}
The Journalist's Edge

Grounded in technical
storytelling and data.

As a Master of Digital Media graduate from Toronto Metropolitan University, I bring a unique blend of editorial precision and technical architecture to the GTA business landscape.

{highlights.map((h, i) => (
{h.icon}

{h.title}

{h.org}

{h.desc}

))}
"In the age of AI agents, your website is no longer just a digital brochure—it is your business's primary infrastructure for truth and authority."
AN

Ali Noorani

Creative Design Lead & GEO Strategist

{/* Contact Form Section */}

Let's build your authority.

Whether you need a strategic GEO audit or a complete technical re-architecture, it starts with a conversation. Let's secure your visibility in the Toronto market.

Email Directly

hello@alinoorani.com

Capability Statement

Download PDF Portfolio
{formStatus === 'success' ? (

Message Received

Thanks for reaching out! I'll review your project details and get back to you within 24 hours.

) : null}
{/* Footer */}
); }