diff --git a/src/constants/language.tsx b/src/constants/language.tsx
new file mode 100644
index 0000000..a121149
--- /dev/null
+++ b/src/constants/language.tsx
@@ -0,0 +1,16 @@
+import { COriginal, CplusplusOriginal } from 'devicons-react'
+
+export const SUPPORTED_LANGUAGES = [
+ {
+ id: "c",
+ label: "C",
+ icon:
+ },
+ {
+ id: "cpp",
+ label: "C++",
+ icon: ,
+ },
+] as const;
+
+export type SupportedLanguage = (typeof SUPPORTED_LANGUAGES)[number]["id"];