Skip to content

Commit 38602e2

Browse files
committed
Merge branch 'master'
2 parents e1e88b9 + 5480db0 commit 38602e2

File tree

117 files changed

+13428
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+13428
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Deploy to Vercel
2+
on:
3+
push:
4+
branches: [master]
5+
pull_request:
6+
branches: [master]
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
environment: Production
12+
env:
13+
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
14+
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
15+
steps:
16+
- uses: actions/checkout@v3
17+
with:
18+
fetch-depth: 2
19+
20+
- name: Setup Hugo
21+
uses: peaceiris/actions-hugo@v2
22+
with:
23+
hugo-version: "0.135.0"
24+
extended: true
25+
26+
- name: Install Dependencies
27+
run: npm install
28+
29+
- name: Build
30+
run: hugo --minify
31+
32+
- name: Debug Info
33+
run: |
34+
echo "Checking environment..."
35+
echo "VERCEL_ORG_ID exists: ${{ secrets.VERCEL_ORG_ID != '' }}"
36+
echo "VERCEL_PROJECT_ID exists: ${{ secrets.VERCEL_PROJECT_ID != '' }}"
37+
echo "VERCEL_TOKEN exists: ${{ secrets.VERCEL_TOKEN != '' }}"
38+
39+
- name: Deploy to Vercel
40+
uses: amondnet/vercel-action@v25
41+
with:
42+
vercel-token: ${{ secrets.VERCEL_TOKEN }}
43+
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
44+
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
45+
working-directory: ./
46+
vercel-args: "--prod"

.hugo_build.lock

Whitespace-only changes.

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
3+
date = {{ .Date }}
4+
draft = true
5+
+++

assets/css/quicklinks.css

Whitespace-only changes.

content/about.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: "About Us"
3+
description: "Learn about Pepe Web Tech's mission to empower local businesses with cutting-edge technology solutions."
4+
layout: "about"
5+
---

content/services.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: "Our Services"
3+
description: "Comprehensive technology solutions tailored for local businesses"
4+
layout: "services"
5+
---

hugo.toml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
baseURL = 'http://localhost:1313/'
2+
languageCode = 'en-us'
3+
title = 'Pepe Web Tech - Your Partner in Tech Transformation'
4+
theme = 'pepewebtech'
5+
6+
[params]
7+
description = "Empowering Local Businesses with Tech Solutions That Work"
8+
# Modern color palette
9+
primaryColor = "#2563EB" # Vibrant blue
10+
secondaryColor = "#10B981" # Fresh green
11+
accentColor = "#6366F1" # Indigo
12+
darkColor = "#1F2937" # Dark gray
13+
lightColor = "#F3F4F6" # Light gray
14+
warningColor = "#F59E0B" # Amber
15+
dangerColor = "#EF4444" # Red
16+
successColor = "#10B981" # Green
17+
18+
# Typography
19+
headingFont = "Poppins"
20+
bodyFont = "Inter"
21+
22+
# Design elements
23+
borderRadius = "1rem"
24+
cardShadow = "0 10px 15px -3px rgba(0, 0, 0, 0.1)"
25+
gradientStart = "#2563EB"
26+
gradientEnd = "#10B981"
27+
28+
# Animation
29+
enableAnimations = true
30+
transitionDuration = "300ms"
31+
32+
[menu]
33+
[[menu.main]]
34+
name = "Home"
35+
url = "/"
36+
weight = 1
37+
[[menu.main]]
38+
name = "About"
39+
url = "/about/"
40+
weight = 2
41+
[[menu.main]]
42+
name = "Services"
43+
url = "/services/"
44+
weight = 3
45+
[[menu.main]]
46+
name = "Digital Products"
47+
url = "/products/"
48+
weight = 4
49+
[[menu.main]]
50+
name = "Blog"
51+
url = "/blog/"
52+
weight = 5
53+
[[menu.main]]
54+
name = "Contact"
55+
url = "/contact/"
56+
weight = 6

ite and Vercel configuration

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
SSUUMMMMAARRYY OOFF LLEESSSS CCOOMMMMAANNDDSS
3+
4+
Commands marked with * may be preceded by a number, _N.
5+
Notes in parentheses indicate the behavior if _N is given.
6+
A key preceded by a caret indicates the Ctrl key; thus ^K is ctrl-K.
7+
8+
h H Display this help.
9+
q :q Q :Q ZZ Exit.
10+
---------------------------------------------------------------------------
11+
12+
MMOOVVIINNGG
13+
14+
e ^E j ^N CR * Forward one line (or _N lines).
15+
y ^Y k ^K ^P * Backward one line (or _N lines).
16+
f ^F ^V SPACE * Forward one window (or _N lines).
17+
b ^B ESC-v * Backward one window (or _N lines).
18+
z * Forward one window (and set window to _N).
19+
w * Backward one window (and set window to _N).
20+
ESC-SPACE * Forward one window, but don't stop at end-of-file.
21+
d ^D * Forward one half-window (and set half-window to _N).
22+
u ^U * Backward one half-window (and set half-window to _N).
23+
ESC-) RightArrow * Right one half screen width (or _N positions).
24+
ESC-( LeftArrow * Left one half screen width (or _N positions).
25+
ESC-} ^RightArrow Right to last column displayed.
26+
ESC-{ ^LeftArrow Left to first column.
27+
F Forward forever; like "tail -f".
28+
ESC-F Like F but stop when search pattern is found.
29+
r ^R ^L Repaint screen.
30+
R Repaint screen, discarding buffered input.
31+
---------------------------------------------------
32+
Default "window" is the screen height.

node_modules/.package-lock.json

Lines changed: 42 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@vercel/speed-insights/.eslintrc.cjs

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)