Dijitalde AI ile
Klasik stratejiler geride kaldı. Yapay zeka destekli çözümlerimizle markanızı dijitalin zirvesine, geleceğin hızıyla taşıyoruz.

export default function HeroSection() { return ( <section className="relative min-h-screen overflow-hidden"> <div className="absolute inset-0 bg-gradient-to-br from-violet-950/30 via-slate-950 to-indigo-950/40" /> <div className="relative z-10 flex flex-col items-center justify-center min-h-screen px-4 text-center"> <Badge className="mb-4 border-violet-500/30 bg-violet-500/10 text-violet-300 backdrop-blur-sm"> Web Tasarım & Geliştirme </Badge> <h1 className="text-5xl md:text-7xl font-bold text-white tracking-tight leading-[1.1] mb-6"> Markanızı <span className="text-violet-400">Zirvede</span> </h1> <p className="text-xl text-slate-400 max-w-2xl mb-10"> Modern, hızlı ve dönüştüren arayüzler tasarlıyoruz </p> <Button className="rounded-full px-8 py-4 bg-violet-600">
export default function HeroSection() { return ( <section className="relative min-h-screen overflow-hidden"> <div className="absolute inset-0 bg-gradient-to-br from-violet-950/30 via-slate-950 to-indigo-950/40" /> <div className="relative z-10 flex flex-col items-center justify-center min-h-screen px-4 text-center"> <Badge className="mb-4 border-violet-500/30 bg-violet-500/10 text-violet-300 backdrop-blur-sm"> Web Tasarım & Geliştirme </Badge> <h1 className="text-5xl md:text-7xl font-bold text-white tracking-tight leading-[1.1] mb-6"> Markanızı <span className="text-violet-400">Zirvede</span> </h1> <p className="text-xl text-slate-400 max-w-2xl mb-10"> Modern, hızlı ve dönüştüren arayüzler tasarlıyoruz </p> <Button className="rounded-full px-8 py-4 bg-violet-600">

import type { Metadata } from 'next' export const metadata: Metadata = { title: 'SEO Optimized | Hipnoz Ajans', description: 'Arama motorlarında üst sıralara çıkın.', openGraph: { title: 'SEO & Dijital Büyüme', description: 'Organik trafik ve dönüşüm odaklı strateji.', images: [{ url: '/og-image.png', width: 1200, height: 630 }], }, alternates: { canonical: 'https://hipnozajans.com' }, robots: { index: true, follow: true }, } const structuredData = { "@context": "https://schema.org", "@type": "Organization", "name": "Hipnoz Ajans", "url": "https://hipnozajans.com",
import type { Metadata } from 'next' export const metadata: Metadata = { title: 'SEO Optimized | Hipnoz Ajans', description: 'Arama motorlarında üst sıralara çıkın.', openGraph: { title: 'SEO & Dijital Büyüme', description: 'Organik trafik ve dönüşüm odaklı strateji.', images: [{ url: '/og-image.png', width: 1200, height: 630 }], }, alternates: { canonical: 'https://hipnozajans.com' }, robots: { index: true, follow: true }, } const structuredData = { "@context": "https://schema.org", "@type": "Organization", "name": "Hipnoz Ajans", "url": "https://hipnozajans.com",

const campaigns = [ { platform: 'Instagram', reach: '2.4M', ctr: '4.2%' }, { platform: 'Facebook', reach: '1.8M', ctr: '3.7%' }, { platform: 'TikTok', reach: '4.1M', ctr: '6.8%' }, { platform: 'YouTube', reach: '890K', ctr: '2.9%' }, ] function MetaAdsConfig({ budget }: { budget: number }) { return { objective: 'CONVERSIONS', targeting: { age_min: 18, age_max: 45, interests: ['tech'] }, optimization_goal: 'LINK_CLICKS', bid_strategy: 'LOWEST_COST_WITHOUT_CAP', daily_budget: budget * 1.3, creatives: allCreatives.filter(c => c.score > 8.0), schedule: { start: '2026-01-01', end: '2026-03-31' }, } }
const campaigns = [ { platform: 'Instagram', reach: '2.4M', ctr: '4.2%' }, { platform: 'Facebook', reach: '1.8M', ctr: '3.7%' }, { platform: 'TikTok', reach: '4.1M', ctr: '6.8%' }, { platform: 'YouTube', reach: '890K', ctr: '2.9%' }, ] function MetaAdsConfig({ budget }: { budget: number }) { return { objective: 'CONVERSIONS', targeting: { age_min: 18, age_max: 45, interests: ['tech'] }, optimization_goal: 'LINK_CLICKS', bid_strategy: 'LOWEST_COST_WITHOUT_CAP', daily_budget: budget * 1.3, creatives: allCreatives.filter(c => c.score > 8.0), schedule: { start: '2026-01-01', end: '2026-03-31' }, } }

import React from 'react' import { View, Text, FlatList, StyleSheet } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' export function HomeScreen() { const insets = useSafeAreaInsets() return ( <View style={[styles.container, { paddingTop: insets.top }]}> <View style={styles.header}> <Text style={styles.greeting}>Merhaba 👋</Text> <Text style={styles.subtitle}>Uygulamanıza hoş geldiniz</Text> </View> <FlatList data={featuredItems} renderItem={({ item }) => <ProductCard data={item} />} keyExtractor={item => item.id.toString()} showsVerticalScrollIndicator={false} /> </View>
import React from 'react' import { View, Text, FlatList, StyleSheet } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' export function HomeScreen() { const insets = useSafeAreaInsets() return ( <View style={[styles.container, { paddingTop: insets.top }]}> <View style={styles.header}> <Text style={styles.greeting}>Merhaba 👋</Text> <Text style={styles.subtitle}>Uygulamanıza hoş geldiniz</Text> </View> <FlatList data={featuredItems} renderItem={({ item }) => <ProductCard data={item} />} keyExtractor={item => item.id.toString()} showsVerticalScrollIndicator={false} /> </View>

export default function HeroSection() { return ( <section className="relative min-h-screen overflow-hidden"> <div className="absolute inset-0 bg-gradient-to-br from-violet-950/30 via-slate-950 to-indigo-950/40" /> <div className="relative z-10 flex flex-col items-center justify-center min-h-screen px-4 text-center"> <Badge className="mb-4 border-violet-500/30 bg-violet-500/10 text-violet-300 backdrop-blur-sm"> Web Tasarım & Geliştirme </Badge> <h1 className="text-5xl md:text-7xl font-bold text-white tracking-tight leading-[1.1] mb-6"> Markanızı <span className="text-violet-400">Zirvede</span> </h1> <p className="text-xl text-slate-400 max-w-2xl mb-10"> Modern, hızlı ve dönüştüren arayüzler tasarlıyoruz </p> <Button className="rounded-full px-8 py-4 bg-violet-600">
export default function HeroSection() { return ( <section className="relative min-h-screen overflow-hidden"> <div className="absolute inset-0 bg-gradient-to-br from-violet-950/30 via-slate-950 to-indigo-950/40" /> <div className="relative z-10 flex flex-col items-center justify-center min-h-screen px-4 text-center"> <Badge className="mb-4 border-violet-500/30 bg-violet-500/10 text-violet-300 backdrop-blur-sm"> Web Tasarım & Geliştirme </Badge> <h1 className="text-5xl md:text-7xl font-bold text-white tracking-tight leading-[1.1] mb-6"> Markanızı <span className="text-violet-400">Zirvede</span> </h1> <p className="text-xl text-slate-400 max-w-2xl mb-10"> Modern, hızlı ve dönüştüren arayüzler tasarlıyoruz </p> <Button className="rounded-full px-8 py-4 bg-violet-600">

import type { Metadata } from 'next' export const metadata: Metadata = { title: 'SEO Optimized | Hipnoz Ajans', description: 'Arama motorlarında üst sıralara çıkın.', openGraph: { title: 'SEO & Dijital Büyüme', description: 'Organik trafik ve dönüşüm odaklı strateji.', images: [{ url: '/og-image.png', width: 1200, height: 630 }], }, alternates: { canonical: 'https://hipnozajans.com' }, robots: { index: true, follow: true }, } const structuredData = { "@context": "https://schema.org", "@type": "Organization", "name": "Hipnoz Ajans", "url": "https://hipnozajans.com",
import type { Metadata } from 'next' export const metadata: Metadata = { title: 'SEO Optimized | Hipnoz Ajans', description: 'Arama motorlarında üst sıralara çıkın.', openGraph: { title: 'SEO & Dijital Büyüme', description: 'Organik trafik ve dönüşüm odaklı strateji.', images: [{ url: '/og-image.png', width: 1200, height: 630 }], }, alternates: { canonical: 'https://hipnozajans.com' }, robots: { index: true, follow: true }, } const structuredData = { "@context": "https://schema.org", "@type": "Organization", "name": "Hipnoz Ajans", "url": "https://hipnozajans.com",

const campaigns = [ { platform: 'Instagram', reach: '2.4M', ctr: '4.2%' }, { platform: 'Facebook', reach: '1.8M', ctr: '3.7%' }, { platform: 'TikTok', reach: '4.1M', ctr: '6.8%' }, { platform: 'YouTube', reach: '890K', ctr: '2.9%' }, ] function MetaAdsConfig({ budget }: { budget: number }) { return { objective: 'CONVERSIONS', targeting: { age_min: 18, age_max: 45, interests: ['tech'] }, optimization_goal: 'LINK_CLICKS', bid_strategy: 'LOWEST_COST_WITHOUT_CAP', daily_budget: budget * 1.3, creatives: allCreatives.filter(c => c.score > 8.0), schedule: { start: '2026-01-01', end: '2026-03-31' }, } }
const campaigns = [ { platform: 'Instagram', reach: '2.4M', ctr: '4.2%' }, { platform: 'Facebook', reach: '1.8M', ctr: '3.7%' }, { platform: 'TikTok', reach: '4.1M', ctr: '6.8%' }, { platform: 'YouTube', reach: '890K', ctr: '2.9%' }, ] function MetaAdsConfig({ budget }: { budget: number }) { return { objective: 'CONVERSIONS', targeting: { age_min: 18, age_max: 45, interests: ['tech'] }, optimization_goal: 'LINK_CLICKS', bid_strategy: 'LOWEST_COST_WITHOUT_CAP', daily_budget: budget * 1.3, creatives: allCreatives.filter(c => c.score > 8.0), schedule: { start: '2026-01-01', end: '2026-03-31' }, } }

import React from 'react' import { View, Text, FlatList, StyleSheet } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' export function HomeScreen() { const insets = useSafeAreaInsets() return ( <View style={[styles.container, { paddingTop: insets.top }]}> <View style={styles.header}> <Text style={styles.greeting}>Merhaba 👋</Text> <Text style={styles.subtitle}>Uygulamanıza hoş geldiniz</Text> </View> <FlatList data={featuredItems} renderItem={({ item }) => <ProductCard data={item} />} keyExtractor={item => item.id.toString()} showsVerticalScrollIndicator={false} /> </View>
import React from 'react' import { View, Text, FlatList, StyleSheet } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' export function HomeScreen() { const insets = useSafeAreaInsets() return ( <View style={[styles.container, { paddingTop: insets.top }]}> <View style={styles.header}> <Text style={styles.greeting}>Merhaba 👋</Text> <Text style={styles.subtitle}>Uygulamanıza hoş geldiniz</Text> </View> <FlatList data={featuredItems} renderItem={({ item }) => <ProductCard data={item} />} keyExtractor={item => item.id.toString()} showsVerticalScrollIndicator={false} /> </View>

export default function HeroSection() { return ( <section className="relative min-h-screen overflow-hidden"> <div className="absolute inset-0 bg-gradient-to-br from-violet-950/30 via-slate-950 to-indigo-950/40" /> <div className="relative z-10 flex flex-col items-center justify-center min-h-screen px-4 text-center"> <Badge className="mb-4 border-violet-500/30 bg-violet-500/10 text-violet-300 backdrop-blur-sm"> Web Tasarım & Geliştirme </Badge> <h1 className="text-5xl md:text-7xl font-bold text-white tracking-tight leading-[1.1] mb-6"> Markanızı <span className="text-violet-400">Zirvede</span> </h1> <p className="text-xl text-slate-400 max-w-2xl mb-10"> Modern, hızlı ve dönüştüren arayüzler tasarlıyoruz </p> <Button className="rounded-full px-8 py-4 bg-violet-600">
export default function HeroSection() { return ( <section className="relative min-h-screen overflow-hidden"> <div className="absolute inset-0 bg-gradient-to-br from-violet-950/30 via-slate-950 to-indigo-950/40" /> <div className="relative z-10 flex flex-col items-center justify-center min-h-screen px-4 text-center"> <Badge className="mb-4 border-violet-500/30 bg-violet-500/10 text-violet-300 backdrop-blur-sm"> Web Tasarım & Geliştirme </Badge> <h1 className="text-5xl md:text-7xl font-bold text-white tracking-tight leading-[1.1] mb-6"> Markanızı <span className="text-violet-400">Zirvede</span> </h1> <p className="text-xl text-slate-400 max-w-2xl mb-10"> Modern, hızlı ve dönüştüren arayüzler tasarlıyoruz </p> <Button className="rounded-full px-8 py-4 bg-violet-600">

import type { Metadata } from 'next' export const metadata: Metadata = { title: 'SEO Optimized | Hipnoz Ajans', description: 'Arama motorlarında üst sıralara çıkın.', openGraph: { title: 'SEO & Dijital Büyüme', description: 'Organik trafik ve dönüşüm odaklı strateji.', images: [{ url: '/og-image.png', width: 1200, height: 630 }], }, alternates: { canonical: 'https://hipnozajans.com' }, robots: { index: true, follow: true }, } const structuredData = { "@context": "https://schema.org", "@type": "Organization", "name": "Hipnoz Ajans", "url": "https://hipnozajans.com",
import type { Metadata } from 'next' export const metadata: Metadata = { title: 'SEO Optimized | Hipnoz Ajans', description: 'Arama motorlarında üst sıralara çıkın.', openGraph: { title: 'SEO & Dijital Büyüme', description: 'Organik trafik ve dönüşüm odaklı strateji.', images: [{ url: '/og-image.png', width: 1200, height: 630 }], }, alternates: { canonical: 'https://hipnozajans.com' }, robots: { index: true, follow: true }, } const structuredData = { "@context": "https://schema.org", "@type": "Organization", "name": "Hipnoz Ajans", "url": "https://hipnozajans.com",

const campaigns = [ { platform: 'Instagram', reach: '2.4M', ctr: '4.2%' }, { platform: 'Facebook', reach: '1.8M', ctr: '3.7%' }, { platform: 'TikTok', reach: '4.1M', ctr: '6.8%' }, { platform: 'YouTube', reach: '890K', ctr: '2.9%' }, ] function MetaAdsConfig({ budget }: { budget: number }) { return { objective: 'CONVERSIONS', targeting: { age_min: 18, age_max: 45, interests: ['tech'] }, optimization_goal: 'LINK_CLICKS', bid_strategy: 'LOWEST_COST_WITHOUT_CAP', daily_budget: budget * 1.3, creatives: allCreatives.filter(c => c.score > 8.0), schedule: { start: '2026-01-01', end: '2026-03-31' }, } }
const campaigns = [ { platform: 'Instagram', reach: '2.4M', ctr: '4.2%' }, { platform: 'Facebook', reach: '1.8M', ctr: '3.7%' }, { platform: 'TikTok', reach: '4.1M', ctr: '6.8%' }, { platform: 'YouTube', reach: '890K', ctr: '2.9%' }, ] function MetaAdsConfig({ budget }: { budget: number }) { return { objective: 'CONVERSIONS', targeting: { age_min: 18, age_max: 45, interests: ['tech'] }, optimization_goal: 'LINK_CLICKS', bid_strategy: 'LOWEST_COST_WITHOUT_CAP', daily_budget: budget * 1.3, creatives: allCreatives.filter(c => c.score > 8.0), schedule: { start: '2026-01-01', end: '2026-03-31' }, } }

import React from 'react' import { View, Text, FlatList, StyleSheet } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' export function HomeScreen() { const insets = useSafeAreaInsets() return ( <View style={[styles.container, { paddingTop: insets.top }]}> <View style={styles.header}> <Text style={styles.greeting}>Merhaba 👋</Text> <Text style={styles.subtitle}>Uygulamanıza hoş geldiniz</Text> </View> <FlatList data={featuredItems} renderItem={({ item }) => <ProductCard data={item} />} keyExtractor={item => item.id.toString()} showsVerticalScrollIndicator={false} /> </View>
import React from 'react' import { View, Text, FlatList, StyleSheet } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' export function HomeScreen() { const insets = useSafeAreaInsets() return ( <View style={[styles.container, { paddingTop: insets.top }]}> <View style={styles.header}> <Text style={styles.greeting}>Merhaba 👋</Text> <Text style={styles.subtitle}>Uygulamanıza hoş geldiniz</Text> </View> <FlatList data={featuredItems} renderItem={({ item }) => <ProductCard data={item} />} keyExtractor={item => item.id.toString()} showsVerticalScrollIndicator={false} /> </View>

export default function HeroSection() { return ( <section className="relative min-h-screen overflow-hidden"> <div className="absolute inset-0 bg-gradient-to-br from-violet-950/30 via-slate-950 to-indigo-950/40" /> <div className="relative z-10 flex flex-col items-center justify-center min-h-screen px-4 text-center"> <Badge className="mb-4 border-violet-500/30 bg-violet-500/10 text-violet-300 backdrop-blur-sm"> Web Tasarım & Geliştirme </Badge> <h1 className="text-5xl md:text-7xl font-bold text-white tracking-tight leading-[1.1] mb-6"> Markanızı <span className="text-violet-400">Zirvede</span> </h1> <p className="text-xl text-slate-400 max-w-2xl mb-10"> Modern, hızlı ve dönüştüren arayüzler tasarlıyoruz </p> <Button className="rounded-full px-8 py-4 bg-violet-600">
export default function HeroSection() { return ( <section className="relative min-h-screen overflow-hidden"> <div className="absolute inset-0 bg-gradient-to-br from-violet-950/30 via-slate-950 to-indigo-950/40" /> <div className="relative z-10 flex flex-col items-center justify-center min-h-screen px-4 text-center"> <Badge className="mb-4 border-violet-500/30 bg-violet-500/10 text-violet-300 backdrop-blur-sm"> Web Tasarım & Geliştirme </Badge> <h1 className="text-5xl md:text-7xl font-bold text-white tracking-tight leading-[1.1] mb-6"> Markanızı <span className="text-violet-400">Zirvede</span> </h1> <p className="text-xl text-slate-400 max-w-2xl mb-10"> Modern, hızlı ve dönüştüren arayüzler tasarlıyoruz </p> <Button className="rounded-full px-8 py-4 bg-violet-600">

import type { Metadata } from 'next' export const metadata: Metadata = { title: 'SEO Optimized | Hipnoz Ajans', description: 'Arama motorlarında üst sıralara çıkın.', openGraph: { title: 'SEO & Dijital Büyüme', description: 'Organik trafik ve dönüşüm odaklı strateji.', images: [{ url: '/og-image.png', width: 1200, height: 630 }], }, alternates: { canonical: 'https://hipnozajans.com' }, robots: { index: true, follow: true }, } const structuredData = { "@context": "https://schema.org", "@type": "Organization", "name": "Hipnoz Ajans", "url": "https://hipnozajans.com",
import type { Metadata } from 'next' export const metadata: Metadata = { title: 'SEO Optimized | Hipnoz Ajans', description: 'Arama motorlarında üst sıralara çıkın.', openGraph: { title: 'SEO & Dijital Büyüme', description: 'Organik trafik ve dönüşüm odaklı strateji.', images: [{ url: '/og-image.png', width: 1200, height: 630 }], }, alternates: { canonical: 'https://hipnozajans.com' }, robots: { index: true, follow: true }, } const structuredData = { "@context": "https://schema.org", "@type": "Organization", "name": "Hipnoz Ajans", "url": "https://hipnozajans.com",

const campaigns = [ { platform: 'Instagram', reach: '2.4M', ctr: '4.2%' }, { platform: 'Facebook', reach: '1.8M', ctr: '3.7%' }, { platform: 'TikTok', reach: '4.1M', ctr: '6.8%' }, { platform: 'YouTube', reach: '890K', ctr: '2.9%' }, ] function MetaAdsConfig({ budget }: { budget: number }) { return { objective: 'CONVERSIONS', targeting: { age_min: 18, age_max: 45, interests: ['tech'] }, optimization_goal: 'LINK_CLICKS', bid_strategy: 'LOWEST_COST_WITHOUT_CAP', daily_budget: budget * 1.3, creatives: allCreatives.filter(c => c.score > 8.0), schedule: { start: '2026-01-01', end: '2026-03-31' }, } }
const campaigns = [ { platform: 'Instagram', reach: '2.4M', ctr: '4.2%' }, { platform: 'Facebook', reach: '1.8M', ctr: '3.7%' }, { platform: 'TikTok', reach: '4.1M', ctr: '6.8%' }, { platform: 'YouTube', reach: '890K', ctr: '2.9%' }, ] function MetaAdsConfig({ budget }: { budget: number }) { return { objective: 'CONVERSIONS', targeting: { age_min: 18, age_max: 45, interests: ['tech'] }, optimization_goal: 'LINK_CLICKS', bid_strategy: 'LOWEST_COST_WITHOUT_CAP', daily_budget: budget * 1.3, creatives: allCreatives.filter(c => c.score > 8.0), schedule: { start: '2026-01-01', end: '2026-03-31' }, } }

import React from 'react' import { View, Text, FlatList, StyleSheet } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' export function HomeScreen() { const insets = useSafeAreaInsets() return ( <View style={[styles.container, { paddingTop: insets.top }]}> <View style={styles.header}> <Text style={styles.greeting}>Merhaba 👋</Text> <Text style={styles.subtitle}>Uygulamanıza hoş geldiniz</Text> </View> <FlatList data={featuredItems} renderItem={({ item }) => <ProductCard data={item} />} keyExtractor={item => item.id.toString()} showsVerticalScrollIndicator={false} /> </View>
import React from 'react' import { View, Text, FlatList, StyleSheet } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' export function HomeScreen() { const insets = useSafeAreaInsets() return ( <View style={[styles.container, { paddingTop: insets.top }]}> <View style={styles.header}> <Text style={styles.greeting}>Merhaba 👋</Text> <Text style={styles.subtitle}>Uygulamanıza hoş geldiniz</Text> </View> <FlatList data={featuredItems} renderItem={({ item }) => <ProductCard data={item} />} keyExtractor={item => item.id.toString()} showsVerticalScrollIndicator={false} /> </View>

export default function HeroSection() { return ( <section className="relative min-h-screen overflow-hidden"> <div className="absolute inset-0 bg-gradient-to-br from-violet-950/30 via-slate-950 to-indigo-950/40" /> <div className="relative z-10 flex flex-col items-center justify-center min-h-screen px-4 text-center"> <Badge className="mb-4 border-violet-500/30 bg-violet-500/10 text-violet-300 backdrop-blur-sm"> Web Tasarım & Geliştirme </Badge> <h1 className="text-5xl md:text-7xl font-bold text-white tracking-tight leading-[1.1] mb-6"> Markanızı <span className="text-violet-400">Zirvede</span> </h1> <p className="text-xl text-slate-400 max-w-2xl mb-10"> Modern, hızlı ve dönüştüren arayüzler tasarlıyoruz </p> <Button className="rounded-full px-8 py-4 bg-violet-600">
export default function HeroSection() { return ( <section className="relative min-h-screen overflow-hidden"> <div className="absolute inset-0 bg-gradient-to-br from-violet-950/30 via-slate-950 to-indigo-950/40" /> <div className="relative z-10 flex flex-col items-center justify-center min-h-screen px-4 text-center"> <Badge className="mb-4 border-violet-500/30 bg-violet-500/10 text-violet-300 backdrop-blur-sm"> Web Tasarım & Geliştirme </Badge> <h1 className="text-5xl md:text-7xl font-bold text-white tracking-tight leading-[1.1] mb-6"> Markanızı <span className="text-violet-400">Zirvede</span> </h1> <p className="text-xl text-slate-400 max-w-2xl mb-10"> Modern, hızlı ve dönüştüren arayüzler tasarlıyoruz </p> <Button className="rounded-full px-8 py-4 bg-violet-600">

import type { Metadata } from 'next' export const metadata: Metadata = { title: 'SEO Optimized | Hipnoz Ajans', description: 'Arama motorlarında üst sıralara çıkın.', openGraph: { title: 'SEO & Dijital Büyüme', description: 'Organik trafik ve dönüşüm odaklı strateji.', images: [{ url: '/og-image.png', width: 1200, height: 630 }], }, alternates: { canonical: 'https://hipnozajans.com' }, robots: { index: true, follow: true }, } const structuredData = { "@context": "https://schema.org", "@type": "Organization", "name": "Hipnoz Ajans", "url": "https://hipnozajans.com",
import type { Metadata } from 'next' export const metadata: Metadata = { title: 'SEO Optimized | Hipnoz Ajans', description: 'Arama motorlarında üst sıralara çıkın.', openGraph: { title: 'SEO & Dijital Büyüme', description: 'Organik trafik ve dönüşüm odaklı strateji.', images: [{ url: '/og-image.png', width: 1200, height: 630 }], }, alternates: { canonical: 'https://hipnozajans.com' }, robots: { index: true, follow: true }, } const structuredData = { "@context": "https://schema.org", "@type": "Organization", "name": "Hipnoz Ajans", "url": "https://hipnozajans.com",

const campaigns = [ { platform: 'Instagram', reach: '2.4M', ctr: '4.2%' }, { platform: 'Facebook', reach: '1.8M', ctr: '3.7%' }, { platform: 'TikTok', reach: '4.1M', ctr: '6.8%' }, { platform: 'YouTube', reach: '890K', ctr: '2.9%' }, ] function MetaAdsConfig({ budget }: { budget: number }) { return { objective: 'CONVERSIONS', targeting: { age_min: 18, age_max: 45, interests: ['tech'] }, optimization_goal: 'LINK_CLICKS', bid_strategy: 'LOWEST_COST_WITHOUT_CAP', daily_budget: budget * 1.3, creatives: allCreatives.filter(c => c.score > 8.0), schedule: { start: '2026-01-01', end: '2026-03-31' }, } }
const campaigns = [ { platform: 'Instagram', reach: '2.4M', ctr: '4.2%' }, { platform: 'Facebook', reach: '1.8M', ctr: '3.7%' }, { platform: 'TikTok', reach: '4.1M', ctr: '6.8%' }, { platform: 'YouTube', reach: '890K', ctr: '2.9%' }, ] function MetaAdsConfig({ budget }: { budget: number }) { return { objective: 'CONVERSIONS', targeting: { age_min: 18, age_max: 45, interests: ['tech'] }, optimization_goal: 'LINK_CLICKS', bid_strategy: 'LOWEST_COST_WITHOUT_CAP', daily_budget: budget * 1.3, creatives: allCreatives.filter(c => c.score > 8.0), schedule: { start: '2026-01-01', end: '2026-03-31' }, } }

import React from 'react' import { View, Text, FlatList, StyleSheet } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' export function HomeScreen() { const insets = useSafeAreaInsets() return ( <View style={[styles.container, { paddingTop: insets.top }]}> <View style={styles.header}> <Text style={styles.greeting}>Merhaba 👋</Text> <Text style={styles.subtitle}>Uygulamanıza hoş geldiniz</Text> </View> <FlatList data={featuredItems} renderItem={({ item }) => <ProductCard data={item} />} keyExtractor={item => item.id.toString()} showsVerticalScrollIndicator={false} /> </View>
import React from 'react' import { View, Text, FlatList, StyleSheet } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' export function HomeScreen() { const insets = useSafeAreaInsets() return ( <View style={[styles.container, { paddingTop: insets.top }]}> <View style={styles.header}> <Text style={styles.greeting}>Merhaba 👋</Text> <Text style={styles.subtitle}>Uygulamanıza hoş geldiniz</Text> </View> <FlatList data={featuredItems} renderItem={({ item }) => <ProductCard data={item} />} keyExtractor={item => item.id.toString()} showsVerticalScrollIndicator={false} /> </View>
DijitaldeAIdevrimiherşeyiyenidenyazdı;ancakbaşarıhâlâgörünürolmaklabaşlıyor.Bizdesiziyapayzekanıngücüyleöneçıkarıyoruz.
HİZMETLERİMİZ
Sizi Dijitalde Görünür Kılmak İçin
Neler Yapıyoruz?
Marka Kimliği
Markanızı pazara taşıyan stratejiler geliştiriyor, kimliğinizi güçlü ve tutarlı biçimde konumlandırıyoruz.

Web Tasarımı
Sadece güzel değil; dönüşüm odaklı, hızlı ve erişilebilir web deneyimleri tasarlıyoruz.

Mobil Uygulama
UX gamifikasyonu ve kullanıcı bağlılığı konusunda uzmanlaşmış, öne çıkan mobil ürünler üretiyoruz.

SEO
Organik görünürlüğünüzü artırmak için teknik SEO, içerik planı ve bağlantı kurma çalışmaları yürütüyoruz.

Reklam Yönetimi
Google, Meta ve diğer platformlarda performans odaklı reklam kampanyaları planlıyor ve yönetiyoruz.

Sosyal Medya Yönetimi
İçerik stratejisinden topluluğa kadar tüm sosyal medya kanallarınızı büyütüyor ve yönetiyoruz.

Portfolyo
Bakış Açınızı Değiştiren
Dokunuşlar
Markaları dijitalde büyüten projeler tasarlıyor, geliştiriyor ve hayata geçiriyoruz. Web tasarımdan mobil uygulamalara, SEO'dan reklam kampanyalarına kadar güçlü işler üretiyoruz.
SÜREÇ
Hipnoz'un Mutfağında İşler Nasıl İşliyor?
Keşif & Strateji
Doğru soru, en iyi tasarımdan daha değerlidir. Sizi dinliyor, pazarın frekansını ölçüyoruz.

Kreatif Tasarım & Form
Estetiği sadece güzel gözükmesi için değil, bir hikaye anlatması için işliyoruz.

Geliştirme & Optimizasyon
Tasarımı yaşayan, nefes alan ve sonuç getiren bir dijital varlığa dönüştürüyoruz.

Neden Hipnoz?
Hipnoz Neyi Farklı
Yapıyor?
Estetik ve Stratejinin Uyumu
Sadece güzel görünen değil, konuşan ve çalışan arayüzler tasarlıyoruz.


Mühendislik Harikası, Işık Hızında Performans
Hayalinizdeki tasarımı, dünyanın en modern ve güçlü teknolojileriyle inşa ediyoruz. Saniyelerle ölçülen açılış hızları ve kusursuz teknik altyapı ile dijitalde kalıcı iz bırakın.

Sadece Kod Değil, Bir Yolculuk İnşası
Bizim için her proje; kullanıcının bir sorunuyla başlar, markamızın teknik gücüyle şekillenir ve somut bir başarı hikayesiyle son bulur.

SEO Dostu Altyapı
Biz, markanızı Next.js framework'ünün SEO açısından en güçlü teknik özellikleriyle (SSR/SSG, Otomatik Görsel Optimizasyonu) donatıyoruz. Bu sayede siteniz, arama motorları tarafından 'kusursuz' algılanır ve sıralamalarda rakip projelere göre çok daha hızlı ilerleme kaydeder.

TEKLİF ALIN
Dijital Varlığınızı Birlikte İnşa Edelim.
Markanıza özel strateji, tasarım ve teknolojiyi bir arada sunuyoruz. Ücretsiz keşif görüşmesi için bize ulaşın.














