Skip to content

Commit a1b854b

Browse files
committed
about us
1 parent dd3030d commit a1b854b

File tree

5 files changed

+196
-4
lines changed

5 files changed

+196
-4
lines changed

content/about-us/_index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "About us"
3+
date: 2023-01-01T00:00:00Z
4+
draft: false
5+
---
6+
7+
## About us
8+
9+
CodeFryDev is a comprehensive digital platform that provides diverse tools, applications, and resources for developers, designers, and digital enthusiasts. We offer an extensive collection of productivity apps, AI-powered tools, engaging games, and creative design resources.
10+
11+
Our mission is to make high-quality digital tools and resources accessible to everyone, regardless of their technical skill level. We believe in empowering users with innovative solutions that enhance productivity, creativity, and digital experiences.
12+
13+
CodeFryDev serves as your ultimate destination for digital content, offering everything from utility applications and educational tutorials to entertainment games and design assets. We are committed to continuously expanding our offerings and improving the user experience across all our platforms.
14+

data/home.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ categories:
8383
# Category for site-wide information, policies, and external links
8484
- name: "Site & External Links"
8585
items:
86-
- name: "About"
86+
- name: "About us"
8787
icon: "cfd-about"
88-
url: "/about"
88+
url: "/about-us"
8989
- name: "Timeline"
9090
icon: "cfd-history"
9191
url: "/history"

layouts/about-us/about-us.html

Lines changed: 155 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
{{ partial "header.html" . }}
5+
<meta name="description" content="About us - CodeFryDev is a comprehensive digital platform providing diverse tools, applications, and resources for developers, designers, and digital enthusiasts.">
6+
<meta name="keywords" content="about us, codefrydev, digital tools, productivity apps, AI tools, games, design resources">
7+
<title>About us - CodeFryDev | Learn More About Our Platform</title>
8+
9+
{{- /* Additional Open Graph tags for better image display */ -}}
10+
<meta property="og:image" content="{{ .Site.BaseURL }}images/IconCodefrydev.svg">
11+
<meta property="og:image:width" content="96">
12+
<meta property="og:image:height" content="96">
13+
<meta property="og:image:alt" content="CodeFryDev Logo">
14+
<meta property="og:type" content="website">
15+
16+
<link rel="stylesheet" href="/css/internal.css">
17+
<style>
18+
.about-us-container {
19+
max-width: 900px;
20+
margin: 0 auto;
21+
padding: 2rem;
22+
}
23+
24+
.about-us-header {
25+
text-align: center;
26+
margin-bottom: 3rem;
27+
}
28+
29+
.about-us-header h1 {
30+
font-size: 3rem;
31+
font-weight: 700;
32+
color: var(--text-primary);
33+
margin: 1rem 0 0.75rem 0;
34+
letter-spacing: -0.5px;
35+
}
36+
37+
.about-us-content {
38+
background: var(--bg-primary);
39+
padding: 3rem;
40+
border-radius: 24px;
41+
margin-bottom: 2rem;
42+
box-shadow:
43+
inset 8px 8px 16px var(--shadow-dark),
44+
inset -8px -8px 16px var(--shadow-light);
45+
}
46+
47+
.about-us-content h2 {
48+
font-size: 2rem;
49+
font-weight: 700;
50+
color: var(--text-primary);
51+
margin: 0 0 1.5rem 0;
52+
}
53+
54+
.about-us-content p {
55+
font-size: 1.15rem;
56+
line-height: 1.9;
57+
color: var(--text-secondary);
58+
margin: 0 0 1.5rem 0;
59+
}
60+
61+
.about-us-content p:last-child {
62+
margin-bottom: 0;
63+
}
64+
65+
@media (max-width: 768px) {
66+
.about-us-container {
67+
padding: 1rem;
68+
}
69+
70+
.about-us-header h1 {
71+
font-size: 2.25rem;
72+
}
73+
74+
.about-us-content {
75+
padding: 2rem 1.5rem;
76+
}
77+
78+
.about-us-content h2 {
79+
font-size: 1.75rem;
80+
}
81+
82+
.about-us-content p {
83+
font-size: 1rem;
84+
}
85+
}
86+
</style>
87+
<script type="application/ld+json">
88+
{
89+
"@context": "https://schema.org",
90+
"@type": "AboutPage",
91+
"url": "{{ .Permalink }}",
92+
"name": "About us",
93+
"description": "About us - CodeFryDev is a comprehensive digital platform providing diverse tools, applications, and resources for developers, designers, and digital enthusiasts.",
94+
"publisher": {
95+
"@type": "Organization",
96+
"name": {{ printf "%q" .Site.Title }},
97+
"url": "{{ .Site.BaseURL }}",
98+
"logo": {
99+
"@type": "ImageObject",
100+
"url": "{{ printf "%simages/IconCodefrydev.svg" .Site.BaseURL }}"
101+
}
102+
},
103+
"image": {
104+
"@type": "ImageObject",
105+
"url": "{{ printf "%simages/IconCodefrydev.svg" .Site.BaseURL }}",
106+
"width": 96,
107+
"height": 96
108+
},
109+
"mainEntity": {
110+
"@type": "Organization",
111+
"name": {{ printf "%q" .Site.Title }},
112+
"url": "{{ .Site.BaseURL }}",
113+
"description": "{{ .Site.Params.description }}",
114+
"logo": {
115+
"@type": "ImageObject",
116+
"url": "{{ printf "%simages/IconCodefrydev.svg" .Site.BaseURL }}",
117+
"width": 96,
118+
"height": 96
119+
},
120+
"image": {
121+
"@type": "ImageObject",
122+
"url": "{{ printf "%simages/IconCodefrydev.svg" .Site.BaseURL }}",
123+
"width": 96,
124+
"height": 96
125+
}
126+
}
127+
}
128+
</script>
129+
</head>
130+
<body>
131+
{{ partial "skip-link.html" . }}
132+
<main id="main-content" role="main">
133+
<div class="MainButtonParent">
134+
<a href="/" aria-label="CodeFryDev Homepage">
135+
<img style="align-items: center;" src="/images/IconCodefrydev.svg" alt="CodeFryDev logo" height="96" width="96">
136+
</a>
137+
</div>
138+
139+
<div class="about-us-container">
140+
<div class="about-us-header">
141+
<img src="/images/IconCodefrydev.svg" alt="CodeFryDev logo" width="120" height="120" style="margin-bottom: 1.5rem;">
142+
<h1>About us</h1>
143+
</div>
144+
145+
<div class="about-us-content">
146+
{{ .Content }}
147+
</div>
148+
</div>
149+
</main>
150+
{{ partial "footer.html" . }}
151+
<script src="/js/feedback.js"></script>
152+
<script src="/js/theme.js"></script>
153+
</body>
154+
</html>
155+

layouts/partials/enhanced-jsonld.html

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@
1919
"height": 96,
2020
"contentUrl": "{{ .Site.BaseURL }}images/IconCodefrydev.svg"
2121
},
22+
"image": {
23+
"@type": "ImageObject",
24+
"url": "{{ .Site.BaseURL }}images/IconCodefrydev.svg",
25+
"width": 96,
26+
"height": 96,
27+
"contentUrl": "{{ .Site.BaseURL }}images/IconCodefrydev.svg"
28+
},
2229
"description": "{{ .Site.Params.description }}",
2330
"foundingDate": "2023",
2431
"founder": {
@@ -32,7 +39,11 @@
3239
"contactPoint": {
3340
"@type": "ContactPoint",
3441
"contactType": "customer service",
35-
"url": "{{ .Site.BaseURL }}about"
42+
"url": "{{ .Site.BaseURL }}about-us"
43+
},
44+
"about": {
45+
"@type": "AboutPage",
46+
"url": "{{ .Site.BaseURL }}about-us"
3647
},
3748
"areaServed": "Worldwide",
3849
"knowsAbout": [
@@ -50,6 +61,12 @@
5061
"name": "{{ .Site.Title }}",
5162
"url": "{{ .Site.BaseURL }}",
5263
"description": "{{ .Site.Params.description }}",
64+
"image": {
65+
"@type": "ImageObject",
66+
"url": "{{ .Site.BaseURL }}images/IconCodefrydev.svg",
67+
"width": 96,
68+
"height": 96
69+
},
5370
"publisher": {
5471
"@id": "{{ .Site.BaseURL }}#organization"
5572
},
@@ -281,6 +298,12 @@
281298
{{- $pageSchema = $pageSchema | append $about -}}
282299
{{- end -}}
283300

301+
{{- /* About-us page */ -}}
302+
{{- if eq .Section "about-us" -}}
303+
{{- $aboutUs := dict "@type" "AboutPage" "name" "About us" "description" "About us - CodeFryDev is a comprehensive digital platform providing diverse tools, applications, and resources for developers, designers, and digital enthusiasts." "url" .Permalink "image" (dict "@type" "ImageObject" "url" (print .Site.BaseURL "images/IconCodefrydev.svg") "width" 96 "height" 96) "mainEntity" (dict "@id" (print .Site.BaseURL "#organization")) "breadcrumb" (dict "@type" "BreadcrumbList" "itemListElement" (slice (dict "@type" "ListItem" "position" 1 "name" "Home" "item" .Site.BaseURL) (dict "@type" "ListItem" "position" 2 "name" "About us" "item" .Permalink))) -}}
304+
{{- $pageSchema = $pageSchema | append $aboutUs -}}
305+
{{- end -}}
306+
284307
{{- /* Store page */ -}}
285308
{{- if eq .Section "store" -}}
286309
{{- $store := dict "@type" "Store" "name" "CodeFryDev Store" "description" "Official store for CodeFryDev products and applications" "url" .Permalink "seller" (dict "@id" (print .Site.BaseURL "#organization")) "paymentAccepted" "Free" "currenciesAccepted" "USD" -}}

layouts/partials/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h3 class="footer-nav-title">Resources</h3>
4040
<h3 class="footer-nav-title">Company</h3>
4141
<nav aria-label="Company navigation">
4242
<ul class="footer-nav-list">
43-
<li><a href="/about" class="footer-nav-link">About Us</a></li>
43+
<li><a href="/about-us" class="footer-nav-link">About us</a></li>
4444
<li><a href="/history" class="footer-nav-link">Timeline</a></li>
4545
<li><a href="/tncprivacy" class="footer-nav-link">Contact</a></li>
4646
<li><a href="/tncprivacy" class="footer-nav-link">Privacy Policy</a></li>

0 commit comments

Comments
 (0)