seo, update /identify, add media email

This commit is contained in:
Will Freeman
2026-01-21 17:01:46 -07:00
parent cb0994a6b1
commit 7717e81d00
5 changed files with 65 additions and 8 deletions

View File

@@ -20,18 +20,32 @@
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/favicons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta name="description" content="DeFlock is a community-driven project that maps surveillance devices across the world.">
<meta name="description" content="DeFlock is an open-source project that maps license plate readers across the US.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="DeFlock" />
<meta property="og:description" content="Spot, map, and resist automated license plate readers (ALPRs) near you." />
<meta property="og:description" content="Find license plate readers (LPRs) near you." />
<meta property="og:image" content="https://deflock.me/og-banner.png" />
<meta property="og:url" content="https://deflock.me" />
<meta property="og:type" content="website" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<title>DeFlock - ALPR Database</title>
<title>DeFlock</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "DeFlock",
"url": "https://deflock.me",
"sameAs": [
"https://github.com/FoggedLens/deflock",
"https://blog.deflock.me/",
"https://apps.apple.com/us/app/deflock-me/id6752760780",
"https://play.google.com/store/apps/details?id=me.deflock.deflockapp&hl=en_US&pli=1"
]
}
</script>
</head>
<body>
<div id="app"></div>

View File

@@ -72,6 +72,10 @@
<loc>https://deflock.me/store</loc>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://deflock.me/groups</loc>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://deflock.me/blog</loc>
<changefreq>daily</changefreq>

View File

@@ -148,7 +148,7 @@ const router = createRouter({
name: 'identify',
component: () => import('../views/Identify.vue'),
meta: {
title: 'Identify ALPRs | DeFlock'
title: 'Identify LPRs | DeFlock'
}
},
{

View File

@@ -2,14 +2,53 @@
<DefaultLayout>
<template #header>
<Hero
title="Spot an ALPR"
title="How to Identify LPRs"
description="Visual guide to identifying license plate readers"
gradient="linear-gradient(135deg, rgb(var(--v-theme-primary)) 0%, rgb(var(--v-theme-secondary)) 100%)"
/>
</template>
<v-container fluid>
<v-container>
<v-expansion-panels>
<v-expansion-panel elevation="2">
<v-expansion-panel-title class="text-h5 font-weight-bold">
Common Features
</v-expansion-panel-title>
<v-expansion-panel-text>
<v-list lines="two">
<v-list-item prepend-icon="mdi-eye">
<v-list-item-title class="text-h6">Rear-Facing Cameras</v-list-item-title>
<v-list-item-subtitle>
LPRs almost always face the <b>rear of vehicles</b>.
</v-list-item-subtitle>
</v-list-item>
<v-list-item prepend-icon="mdi-lightbulb-on">
<v-list-item-title class="text-h6">Infrared Lights</v-list-item-title>
<v-list-item-subtitle>
Look for infrared lights that emit a <b>faint red glow</b> at night.
</v-list-item-subtitle>
</v-list-item>
<v-list-item prepend-icon="mdi-solar-panel">
<v-list-item-title class="text-h6">Solar Panels</v-list-item-title>
<v-list-item-subtitle>
Many LPRs are powered by nearby <b>solar panels</b>.
</v-list-item-subtitle>
</v-list-item>
</v-list>
</v-expansion-panel-text>
</v-expansion-panel>
</v-expansion-panels>
</v-container>
<v-container class="mb-12">
<h2 class="text-h4 text-center mt-3">Common LPR Vendors</h2>
<p class="text-center text-medium-emphasis mb-8">
Most LPRs are easy to recognize.
</p>
<!-- Skeleton Loader -->
<v-row v-if="loading">
<v-col cols="12" md="6" v-for="n in 4" :key="`skeleton-${n}`" class="mb-4">

View File

@@ -3,8 +3,8 @@
<template #header>
<Hero
imageUrl="/press.jpg"
title="Press"
description="We're grateful for the media's interest in DeFlock. Below you'll find our press kit and contact information for interviews."
title="Media"
description="We're grateful for the media's interest in DeFlock. Below you'll find our media kit and contact information for interviews."
/>
</template>
@@ -50,7 +50,7 @@
<h2>Contact Us</h2>
<p>
For press inquiries and interview requests, <router-link to="/contact" >please contact us here</router-link>.
For media inquiries and interview requests, send us an email at <a href="mailto:media@deflock.me">media@deflock.me</a>.
</p>
</v-container>