Compare commits
2 Commits
bf0ac6503f
...
be4fc4ca14
| Author | SHA1 | Date |
|---|---|---|
|
|
be4fc4ca14 | |
|
|
9922f094c7 |
|
|
@ -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
|
||||
|
||||
|
|
@ -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: {
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 729 KiB |
|
|
@ -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 |
Loading…
Reference in New Issue