diff --git a/src/components/home/ActivitySection.tsx b/src/components/home/ActivitySection.tsx
index 2bef58b..9e5f614 100644
--- a/src/components/home/ActivitySection.tsx
+++ b/src/components/home/ActivitySection.tsx
@@ -1,7 +1,7 @@
import Image from 'next/image';
-import fixing from '/public/svg/fixing.svg';
-import coding from '/public/svg/coding.svg';
+import fixing from '../../../public/svg/fixing.svg';
+import coding from '../../../public/svg/coding.svg';
import useTranslation from 'next-translate/useTranslation';
const ActivitySection = () => {
@@ -12,6 +12,7 @@ const ActivitySection = () => {
diff --git a/src/components/home/PartnersSection.tsx b/src/components/home/PartnersSection.tsx
index 053efac..0609052 100644
--- a/src/components/home/PartnersSection.tsx
+++ b/src/components/home/PartnersSection.tsx
@@ -89,6 +89,7 @@ const Partner = ({ url: link, img, name }: PartnerProps) => (
alt={`Logo of ${name}`}
src={img}
className="w-40"
+ style={{ height: 'auto' }}
/>
);
diff --git a/src/pages/api/events/data.ts b/src/pages/api/events/data.ts
index b89ad62..321253d 100644
--- a/src/pages/api/events/data.ts
+++ b/src/pages/api/events/data.ts
@@ -1,6 +1,14 @@
import { Event } from './type';
export const events: Event[] = [
+ {
+ name: 'Live Koor 2026',
+ description:
+ 'A session on Agentic Coding with Daouda BA, where the terminal becomes your co-developer.',
+ date: '03/14/2026',
+ type: 'previous',
+ full: 'Full description here.',
+ },
{
name: 'Hacktoberfest 2025',
description:
diff --git a/src/pages/events/[slug]/index.tsx b/src/pages/events/[slug]/index.tsx
index 55096b8..308fb1c 100644
--- a/src/pages/events/[slug]/index.tsx
+++ b/src/pages/events/[slug]/index.tsx
@@ -39,7 +39,7 @@ export default function EventDetailPage() {
-
+
diff --git a/tsconfig.json b/tsconfig.json
index 8e906dd..9b657a5 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,32 +1,43 @@
{
- "compilerOptions": {
- "target": "esnext",
- "lib": ["dom", "dom.iterable", "esnext"],
- "allowJs": true,
- "skipLibCheck": true,
- "strict": true,
- "noImplicitAny": false,
- "forceConsistentCasingInFileNames": true,
- "noEmit": true,
- "esModuleInterop": true,
- "module": "esnext",
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "preserve",
- "incremental": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["./src/*"],
- "@/icon-name": ["./types/name.d.ts"],
- "@utils/cn": ["./utils/cn.ts"]
- }
- },
- "include": [
- "next-env.d.ts",
- "types/declarations.d.ts",
- "**/*.ts",
- "**/*.tsx"
- ],
- "exclude": ["node_modules"]
+ "compilerOptions": {
+ "target": "esnext",
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "noImplicitAny": false,
+ "forceConsistentCasingInFileNames": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "bundler",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "react-jsx",
+ "incremental": true,
+ "paths": {
+ "@/*": [
+ "./src/*"
+ ],
+ "@/icon-name": [
+ "./types/name.d.ts"
+ ],
+ "@utils/cn": [
+ "./utils/cn.ts"
+ ]
+ }
+ },
+ "include": [
+ "next-env.d.ts",
+ "types/declarations.d.ts",
+ "**/*.ts",
+ "**/*.tsx"
+ ],
+ "exclude": [
+ "node_modules"
+ ]
}
diff --git a/types/name.d.ts b/types/name.d.ts
index 9c4453b..24dc7b2 100644
--- a/types/name.d.ts
+++ b/types/name.d.ts
@@ -2,9 +2,9 @@
export type IconName =
| 'arrow-right'
+ | 'back-undo'
| 'caret-sort'
| 'check'
- | 'circle-arrow-left'
| 'commit-icon'
| 'cross-1'
| 'discord'