Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for tempaltes keywords #325

Merged
merged 4 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove keywords
  • Loading branch information
johnnyfish committed Nov 5, 2024
commit 5a73c0b7cb2a7ba6d6946f510ff0797b5725f019
1 change: 0 additions & 1 deletion src/templates-data/templates-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export interface Template {
imageDark: string;
diagram: Diagram;
tags: string[];
keywords: string[];
featured: boolean;
url?: string;
}
Expand Down
7 changes: 0 additions & 7 deletions src/templates-data/templates/airbnb-db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ export const airbnbDb: Template = {
image,
imageDark,
tags: ['postgres', 'example apps'],
keywords: [
'Airbnb database schema',
'Airbnb database ChartDB template',
'Database schema visualization for Airbnb',
'Airbnb sample database design',
'Airbnb example schema diagram',
],
featured: true,
diagram: {
id: 'airbnb_db',
Expand Down
5 changes: 0 additions & 5 deletions src/templates-data/templates/employee-db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ export const employeeDb: Template = {
image,
imageDark,
tags: ['mysql'],
keywords: [
'Employees database schema',
'Employees database template',
'Employees sample database schema visualization',
],
featured: true,
diagram: {
id: 'employees_db',
Expand Down
10 changes: 2 additions & 8 deletions src/templates-data/templates/visual-novel-db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,11 @@ export const visualNovelDb: Template = {
slug: 'visual-novel-db',
name: 'The Visual Novel Database',
shortDescription: 'The Visual Novel Database',
description: 'A comprehensive database for information about visual novels',
description:
'A comprehensive database for information about visual novels.',
image,
imageDark,
tags: ['postgres'],
keywords: [
'The Visual Novel Database Schema',
'The visual novel database template',
'Database schema visualization',
'Visual novel database design',
'Relational database structure',
],
featured: true,
url: 'https://vndb.org',
diagram: {
Expand Down
7 changes: 0 additions & 7 deletions src/templates-data/templates/wordpress-db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,6 @@ export const wordpressDb: Template = {
image,
imageDark,
tags: ['mysql', 'open source', 'WordPress', 'php'],
keywords: [
'WordPress database schema',
'WordPress database ChartDB template',
'Schema visualization for WordPress database',
'WordPress database design with ChartDB',
'WordPress schema diagram',
],
featured: true,
url: 'https://wordpress.org',
diagram: {
Expand Down
Loading