[dyad] Added colored length indicators for meta tags - wrote 2 file(s)
This commit is contained in:
@@ -6,6 +6,7 @@ import { Input } from "@/components/ui/input";
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { Globe } from "lucide-react";
|
||||
import { extractMetaData } from "@/app/actions";
|
||||
import { LengthIndicator } from "./length-indicator";
|
||||
|
||||
interface MetaData {
|
||||
title: string;
|
||||
@@ -70,14 +71,26 @@ export function MetaForm() {
|
||||
</CardHeader>
|
||||
<CardContent className="space-y-4">
|
||||
<div>
|
||||
<h3 className="font-semibold text-card-foreground">Meta Title</h3>
|
||||
<p className="text-muted-foreground bg-muted p-3 rounded-md mt-1">
|
||||
<div className="flex items-center gap-2 mb-1">
|
||||
<h3 className="font-semibold text-card-foreground">Meta Title</h3>
|
||||
<LengthIndicator
|
||||
length={metaData.title.length}
|
||||
type="title"
|
||||
/>
|
||||
</div>
|
||||
<p className="text-muted-foreground bg-muted p-3 rounded-md">
|
||||
{metaData.title || "Not found"}
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-semibold text-card-foreground">Meta Description</h3>
|
||||
<p className="text-muted-foreground bg-muted p-3 rounded-md mt-1">
|
||||
<div className="flex items-center gap-2 mb-1">
|
||||
<h3 className="font-semibold text-card-foreground">Meta Description</h3>
|
||||
<LengthIndicator
|
||||
length={metaData.description.length}
|
||||
type="description"
|
||||
/>
|
||||
</div>
|
||||
<p className="text-muted-foreground bg-muted p-3 rounded-md">
|
||||
{metaData.description || "Not found"}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user