Skip to content

Commit

Permalink
Added new layout for company SEO head
Browse files Browse the repository at this point in the history
  • Loading branch information
ddxv committed Oct 14, 2024
1 parent 3225d40 commit 4576160
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 0 deletions.
28 changes: 28 additions & 0 deletions frontend/src/routes/(newcategorical)/companies/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,34 @@
}
</script>

<svelte:head>
<title>Top Adtech Companies, Ad Networks & Data Trackers | AppGoblin</title>
<meta
name="description"
content="Explore top-ranked adtech advertising networks, data trackers, MMPs, and programmatic networks. Discover insights from app-ads.txt files and our extensive research on hundreds of ad tech companies across various app categories."
/>
<meta
name="keywords"
content="adtech companies, advertising networks, data trackers, MMPs, programmatic networks, app-ads.txt, mobile advertising, ad tech analytics, app marketing, AppGoblin"
/>
<meta property="og:title" content="Top Adtech Companies & Ad Networks | AppGoblin Analytics" />
<meta
property="og:description"
content="Discover top adtech companies, ad networks, and data trackers. Explore comprehensive data on hundreds of ad tech firms, their app clients, and market presence across different app categories."
/>
<meta name="twitter:title" content="Leading Adtech Companies & Networks | AppGoblin Insights" />
<meta
name="twitter:description"
content="Uncover insights on top adtech firms, ad networks, and data trackers. Analyze data from app-ads.txt files and our research on hundreds of ad tech companies and their app clients."
/>
<meta property="og:image" content="https://appgoblin.info/adtech-companies-banner.png" />
<meta property="og:url" content="https://appgoblin.info/companies" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://appgoblin.info/adtech-companies-banner.png" />
<link rel="canonical" href="https://appgoblin.info/companies" />
</svelte:head>

<div class="flex items-center mb-2">
<h1 class="text-3xl font-bold text-gray-800">Companies Overview</h1>
<div class="h-8 w-px bg-gray-300 mx-2"></div>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<script lang="ts">
import { page } from '$app/stores';
const { name, category } = $page.params;
let category_title: string = category;
let rel_link = name;
if (!category) {
category_title = ' | ';
rel_link = name;
} else {
category_title = category + ' | ';
rel_link = `${name}/${category}`;
}
</script>

<svelte:head>
<title>{name} {category_title} Adtech Company Profile & Analytics | AppGoblin</title>
<meta
name="description"
content="{name} {category_title} is an adtech company with their apps in its network. Explore detailed analytics, market presence, and insights about {name}'s role in the mobile advertising ecosystem."
/>
<meta
name="keywords"
content="{name}, {category_title}, adtech, advertising network, data tracking, mobile measurement, programmatic advertising, app-ads.txt, mobile advertising, ad tech analytics, AppGoblin"
/>
<meta
property="og:title"
content="{name} {category_title} | Adtech Company Insights | AppGoblin Analytics"
/>
<meta
property="og:description"
content="Discover {name}'s impact in the {category_title} adtech industry. Analyze data on their apps, market presence, and role in mobile advertising. Powered by AppGoblin's comprehensive adtech research."
/>
<meta
name="twitter:title"
content="{name} {category_title} Adtech Profile | AppGoblin Insights"
/>
<meta
name="twitter:description"
content="Uncover insights on {name}'s {category_title} adtech operations. Explore data on their apps, industry connections, and market influence in mobile advertising and data tracking."
/>

<meta property="og:image" content="https://appgoblin.info/goblin_purple_hat_250.png" />
<meta property="og:url" content="https://appgoblin.info/" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://appgoblin.info/goblin_purple_hat_250.png" />
<link rel="canonical" href="https://appgoblin.info/companies/{rel_link}" />
</svelte:head>

<slot></slot>

0 comments on commit 4576160

Please sign in to comment.