Skip to content

Commit a397aae

Browse files
committed
replaced nuxtimg with img
1 parent 9b2e10e commit a397aae

4 files changed

Lines changed: 5 additions & 119 deletions

File tree

app/components/AdminsSection.vue

Lines changed: 2 additions & 116 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<h2 class="text-5xl md:text-7xl font-bold text-left tracking-tighter leading-tight">
55
<span class="text-primary-500">Meet the Admins</span><br />
66
who make
7-
<NuxtImg
7+
<img
88
src="/images/logo.svg"
99
alt="Devcongress Logo"
1010
class="h-16 w-auto inline-flex"
@@ -65,6 +65,7 @@ import {
6565
Youtube,
6666
Slack,
6767
} from "lucide-vue-next";
68+
import { admins } from '../data/admins';
6869
6970
const icons = {
7071
twitter: Twitter,
@@ -75,119 +76,4 @@ const icons = {
7576
website: Globe,
7677
slack: Slack,
7778
};
78-
79-
const admins = [
80-
{
81-
name: "Andrew Smith",
82-
role: "Full-Stack Developer",
83-
image:
84-
"https://pbs.twimg.com/profile_images/1686721836795432960/Ghu7dKZC_400x400.jpg",
85-
socials: [
86-
{ platform: "twitter", url: "https://twitter.com/andrewsmith" },
87-
{ platform: "github", url: "https://github.com/andrewsmith" },
88-
],
89-
},
90-
{
91-
name: "Bubunyo Nyavor",
92-
role: "Data Analyst",
93-
image: "https://pbs.twimg.com/media/FHvsk2MXMAQBovS?format=jpg&name=large",
94-
socials: [
95-
{ platform: "linkedin", url: "https://linkedin.com/in/leo" },
96-
{ platform: "github", url: "https://github.com/leo" },
97-
],
98-
},
99-
{
100-
name: "Anthony Acquah",
101-
role: "Tech Lead",
102-
image:
103-
"https://pbs.twimg.com/profile_images/3248556771/feb8ad6b5f403e70ea321d17b80df232_400x400.png",
104-
socials: [
105-
{ platform: "twitter", url: "https://twitter.com/anthonyacquah" },
106-
{ platform: "linkedin", url: "https://linkedin.com/in/anthonyacquah" },
107-
],
108-
},
109-
{
110-
name: "Claude Ayitey",
111-
role: "Full-Stack Developer",
112-
image: "https://www.devcongress.org/images/claude.jpg",
113-
socials: [
114-
{ platform: "twitter", url: "https://twitter.com/claudeayitey" },
115-
{ platform: "website", url: "https://claudeayitey.com" },
116-
{ platform: "youtube", url: "https://claudeayitey.com" },
117-
{ platform: "linkedin", url: "https://claudeayitey.com" },
118-
],
119-
},
120-
{
121-
name: "Edem",
122-
role: "Data Analyst",
123-
image: "https://www.devcongress.org/images/edem.jpg",
124-
socials: [
125-
{ platform: "linkedin", url: "https://linkedin.com/in/edem" },
126-
{ platform: "github", url: "https://github.com/edem" },
127-
],
128-
},
129-
{
130-
name: "Stefan",
131-
role: "Tech Lead",
132-
image: "https://pbs.twimg.com/profile_images/1875679658647138304/w--j-PK8_400x400.jpg",
133-
socials: [
134-
{ platform: "twitter", url: "https://x.com/TheDumbTechGuy" },
135-
],
136-
},
137-
{
138-
name: "Elorm Adjaho",
139-
role: "Tech Lead",
140-
image: "https://www.devcongress.org/images/elorm.jpg",
141-
socials: [
142-
{ platform: "twitter", url: "https://twitter.com/elormadjaho" },
143-
{ platform: "linkedin", url: "https://linkedin.com/in/elormadjaho" },
144-
],
145-
},
146-
{
147-
name: "Francis Addai",
148-
role: "Full-Stack Developer",
149-
image: "https://www.devcongress.org/images/francis.jpg",
150-
socials: [
151-
{ platform: "github", url: "https://github.com/francisaddai" },
152-
{ platform: "website", url: "https://francisaddai.com" },
153-
],
154-
},
155-
{
156-
name: "Saviour Kirk Agbenyegah",
157-
role: "Data Analyst",
158-
image: "https://www.devcongress.org/images/savekirk.jpg",
159-
socials: [
160-
{ platform: "linkedin", url: "https://linkedin.com/in/saviourkirk" },
161-
{ platform: "twitter", url: "https://twitter.com/savekirk" },
162-
],
163-
},
164-
{
165-
name: "Yaw Boakye",
166-
role: "Tech Lead",
167-
image:
168-
"https://pbs.twimg.com/profile_images/1680929162616291329/_jCSwpti_400x400.jpg",
169-
socials: [
170-
{ platform: "linkedin", url: "https://linkedin.com/in/yawboakye" },
171-
{ platform: "twitter", url: "https://twitter.com/yawboakye" },
172-
],
173-
},
174-
{
175-
name: "Nathan Sodja",
176-
role: "Software Engineer",
177-
image: "https://ca.slack-edge.com/T0A0T7A5Q-U01NAPY9TEC-f92ae3063f27-512",
178-
socials: [
179-
{ platform: "slack", url: "#" },
180-
{ platform: "github", url: "https://github.com/nathansodja" },
181-
],
182-
},
183-
{
184-
name: "Blossom Dugbatey",
185-
role: "Software Engineer",
186-
image: "https://ca.slack-edge.com/T0A0T7A5Q-U02LQJ83N9H-42650d9d2b97-512",
187-
socials: [
188-
{ platform: "linkedin", url: "https://linkedin.com/in/blossomdugbatey" },
189-
{ platform: "twitter", url: "https://twitter.com/blossomdugbatey" },
190-
],
191-
},
192-
];
19379
</script>

app/components/FooterSection.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
</ul>
106106
</div>
107107
</div>
108-
<NuxtImg src="/images/logo.svg" class="w-full" alt="devcongress-logo" srcset="" />
108+
<img src="/images/logo.svg" class="w-full" alt="devcongress-logo" srcset="" />
109109

110110
<div class="pt-8 text-center">
111111
<p class="text-gray-100">

app/components/MissionSection.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
>
99
<h2 class="text-5xl lg:text-7xl font-bold mb-8 tracking-tighter">
1010
That's why we created
11-
<NuxtImg
11+
<img
1212
src="/images/logo.svg"
1313
alt="Devcongress Logo"
1414
class="h-16 w-auto inline-flex"

app/components/Navbar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="flex items-center justify-between h-16 md:h-20">
55
<!-- Logo -->
66
<a href="/" class="flex items-center gap-2">
7-
<NuxtImg src="/images/logo.svg" alt="Devcongress Logo" class="h-8 w-auto" />
7+
<img src="/images/logo.svg" alt="Devcongress Logo" class="h-8 w-auto" />
88
</a>
99

1010
<!-- Desktop Nav -->

0 commit comments

Comments
 (0)