Skip to content

Commit abfb5d7

Browse files
committed
Add favicons, og image, OG share tags
1 parent 26aee07 commit abfb5d7

6 files changed

Lines changed: 66 additions & 4 deletions

File tree

.dockerignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Version control
2+
.git
3+
.gitignore
4+
5+
# CI/CD and deployment
6+
.github
7+
helm-chart
8+
9+
# Docker files
10+
Dockerfile
11+
.dockerignore
12+
13+
# Development files
14+
README.md
15+
*.md
16+
17+
# IDE and editor files
18+
.vscode
19+
.idea
20+
*.swp
21+
*.swo
22+
23+
# OS generated files
24+
.DS_Store
25+
Thumbs.db
26+
27+
# Logs
28+
*.log
29+
30+
# Temporary files
31+
tmp/
32+
temp/

Dockerfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
FROM nginx:alpine
2-
COPY index.html /usr/share/nginx/html/
3-
COPY style.css /usr/share/nginx/html/
4-
COPY script.js /usr/share/nginx/html/
5-
COPY stars.js /usr/share/nginx/html/
2+
COPY . /usr/share/nginx/html/
63
EXPOSE 80

favicon.png

11 KB
Loading

favicon.svg

Lines changed: 1 addition & 0 deletions
Loading

index.html

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,38 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes, viewport-fit=cover">
66
<title>Watchflow - Agentic GitHub Guardrails by Warestack</title>
7+
8+
<!-- OpenGraph Meta Tags -->
9+
<meta property="og:title" content="Watchflow - Agentic GitHub Guardrails">
10+
<meta property="og:description" content="Replace static protection rules with agentic guardrails. Watchflow ensures consistent quality standards with smarter, context-aware protection for every repo.">
11+
<meta property="og:type" content="website">
12+
<meta property="og:url" content="https://watchflow.dev">
13+
<meta property="og:site_name" content="Watchflow">
14+
<meta property="og:locale" content="en_US">
15+
<meta property="og:image" content="https://watchflow.dev/og-image.png">
16+
<meta property="og:image:width" content="1200">
17+
<meta property="og:image:height" content="630">
18+
<meta property="og:image:alt" content="Watchflow - Agentic GitHub Guardrails">
19+
20+
<!-- Twitter Card Meta Tags -->
21+
<meta name="twitter:card" content="summary_large_image">
22+
<meta name="twitter:title" content="Watchflow - Agentic GitHub Guardrails">
23+
<meta name="twitter:description" content="Replace static protection rules with agentic guardrails. Watchflow ensures consistent quality standards with smarter, context-aware protection for every repo.">
24+
<meta name="twitter:site" content="@warestack">
25+
<meta name="twitter:creator" content="@warestack">
26+
<meta name="twitter:image" content="https://watchflow.dev/og-image.png">
27+
<meta name="twitter:image:alt" content="Watchflow - Agentic GitHub Guardrails">
28+
29+
<!-- Favicon and Icons -->
30+
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
31+
<link rel="icon" type="image/png" href="/favicon.png">
32+
<link rel="apple-touch-icon" href="/favicon.png">
33+
34+
<!-- Additional Meta Tags -->
35+
<meta name="description" content="Replace static protection rules with agentic guardrails. Watchflow ensures consistent quality standards with smarter, context-aware protection for every repo.">
36+
<meta name="keywords" content="GitHub, guardrails, agentic, protection rules, code quality, pull requests, automation, Warestack">
37+
<meta name="author" content="Warestack">
38+
739
<link rel="preconnect" href="https://fonts.googleapis.com">
840
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
941
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;600;700;800;900&display=swap" rel="stylesheet">

og-image.png

392 KB
Loading

0 commit comments

Comments
 (0)