Compare commits

..

2 Commits

Author SHA1 Message Date
Jeff Emmett be4fc4ca14 update favicon to enso zen circle
Replace Vercel blob storage favicon with local enso (zen brush circle)
SVG and PNG with transparent background.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 18:19:37 +00:00
Jeff Emmett 9922f094c7 Add GitHub to Gitea mirror workflow
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-31 18:14:03 +00:00
4 changed files with 52 additions and 1 deletions

28
.github/workflows/mirror-to-gitea.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Mirror to Gitea
on:
push:
branches:
- main
- master
workflow_dispatch:
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Mirror to Gitea
env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
GITEA_USERNAME: ${{ secrets.GITEA_USERNAME }}
run: |
REPO_NAME=$(basename $GITHUB_REPOSITORY)
git remote add gitea https://$GITEA_USERNAME:$GITEA_TOKEN@gitea.jeffemmett.com/jeffemmett/$REPO_NAME.git || true
git push gitea --all --force
git push gitea --tags --force

View File

@ -36,7 +36,11 @@ export const metadata: Metadata = {
title: "Full Circle Digital Marketing",
description: "We are a boutique digital marketing team committed to helping you succeed at what you do best.",
icons: {
icon: "data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>⭕</text></svg>",
icon: [
{ url: "/icon.svg", type: "image/svg+xml" },
{ url: "/favicon.png", type: "image/png" },
],
apple: "/favicon.png",
},
generator: "v0.dev",
openGraph: {

BIN
public/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 729 KiB

19
public/icon.svg Normal file
View File

@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<!-- Enso zen circle - incomplete brush stroke -->
<path fill="none" stroke="#ffffff" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"
d="M 20 52
Q 8 44, 8 32
Q 8 14, 32 10
Q 52 8, 56 28
Q 58 44, 44 52
Q 36 56, 28 52"
opacity="0.95"/>
<!-- Brush stroke variation for texture -->
<path fill="none" stroke="#ffffff" stroke-width="3" stroke-linecap="round"
d="M 21 51
Q 10 44, 10 32
Q 10 16, 32 12
Q 50 10, 54 28
Q 56 42, 44 50"
opacity="0.6"/>
</svg>

After

Width:  |  Height:  |  Size: 612 B