Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/agencies/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getCommonwealthAgencies } from '@/lib/data-service';
export const revalidate = 3600;

export const metadata: Metadata = {
title: 'Agency AI Transparency Statements Policai',
title: 'Agency AI Transparency Statements - Policai',
description:
'Browse Australian Government agency AI transparency statements and public disclosures.',
};
Expand Down
2 changes: 1 addition & 1 deletion src/app/blog/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export async function generateMetadata({
}

return {
title: `${post.title} Policai Blog`,
title: `${post.title} - Policai Blog`,
description: post.description,
};
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ArrowRight } from 'lucide-react';
import { PageIntro } from '@/components/layout';

export const metadata = {
title: 'Blog Policai',
title: 'Blog - Policai',
description: 'Project updates and AI policy commentary from Policai.',
};

Expand Down
2 changes: 1 addition & 1 deletion src/app/courts/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getPolicies } from '@/lib/data-service';
export const revalidate = 3600;

export const metadata: Metadata = {
title: 'Courts & Tribunals Policai',
title: 'Courts & Tribunals - Policai',
description:
'Verified Australian court practice notes, directions, and guidance governing the use of artificial intelligence in proceedings.',
};
Expand Down
2 changes: 1 addition & 1 deletion src/app/developments/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { summarizeManualSourceCoverage } from '@/lib/source-monitoring';
export const revalidate = 3600;

export const metadata: Metadata = {
title: 'Developments Policai',
title: 'Developments - Policai',
description: 'Verified and emerging Australian AI policy developments from official government sources.',
};

Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const plexMono = IBM_Plex_Mono({
});

export const metadata: Metadata = {
title: 'Policai Australian AI Policy and Governance Tracker',
title: 'Policai - Australian AI Policy and Governance Tracker',
description:
'A register of AI policy, regulation and court guidance from Australian federal, state and territory governments, each record linked to its official source.',
keywords: [
Expand Down
2 changes: 1 addition & 1 deletion src/app/map/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getPolicies } from '@/lib/data-service';
export const revalidate = 3600;

export const metadata: Metadata = {
title: 'Australian AI Policy Map Policai',
title: 'Australian AI Policy Map - Policai',
description:
'Explore verified and review-pending Australian AI policy records by jurisdiction.',
};
Expand Down
2 changes: 1 addition & 1 deletion src/app/methodology/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { MetricStrip, PageIntro } from '@/components/layout';
export const revalidate = 3600;

export const metadata: Metadata = {
title: 'Methodology & Verification Policai',
title: 'Methodology & Verification - Policai',
description:
'How Policai discovers, verifies, reviews, and publishes Australian AI policy information.',
};
Expand Down
2 changes: 1 addition & 1 deletion src/app/network/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { parseNetworkViewState } from '@/lib/network-view-state';
export const revalidate = 3600;

export const metadata: Metadata = {
title: 'Australian AI Policy Network Policai',
title: 'Australian AI Policy Network - Policai',
description:
'Explore source-backed relationships among Australian AI policy instruments.',
};
Expand Down
4 changes: 2 additions & 2 deletions src/app/policies/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ async function getRelatedPolicies(currentPolicy: Policy): Promise<Policy[]> {
export async function generateMetadata({ params }: { params: Promise<{ id: string }> }) {
const { id } = await params;
const policy = await getPolicyById(id);
if (!policy) return { title: 'Policy Not Found Policai' };
if (!policy) return { title: 'Policy Not Found - Policai' };
return {
title: `${policy.title} Policai`,
title: `${policy.title} - Policai`,
description: policy.description,
keywords: policy.tags,
};
Expand Down
2 changes: 1 addition & 1 deletion src/app/timeline/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getPolicies, getTimelineEvents } from '@/lib/data-service';
export const revalidate = 3600;

export const metadata: Metadata = {
title: 'Australian AI Policy Timeline Policai',
title: 'Australian AI Policy Timeline - Policai',
description:
'A source-backed timeline of Australian artificial intelligence policy, governance, and court developments.',
};
Expand Down
Loading