|
| 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 | + |
0 commit comments