diff --git a/.vscode/settings.json b/.vscode/settings.json
index db5e29e..cc9f746 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -5,4 +5,7 @@
"files.associations": {
// "*.mdx": "markdown"
},
+ "[mdx]": {
+ "editor.wordWrap": "on"
+ }
}
\ No newline at end of file
diff --git a/astro.config.mjs b/astro.config.mjs
index 2b85993..5a9f84d 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -1,6 +1,6 @@
// @ts-check
-import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
+import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
@@ -24,5 +24,8 @@ export default defineConfig({
autogenerate: { directory: 'chapters' },
}
],
- }), react()],
+ components: {
+ SocialIcons: './src/components/CustomSocialIcons.astro',
+ }
+ }), react()],
});
\ No newline at end of file
diff --git a/src/components/CustomSocialIcons.astro b/src/components/CustomSocialIcons.astro
new file mode 100644
index 0000000..41328b4
--- /dev/null
+++ b/src/components/CustomSocialIcons.astro
@@ -0,0 +1,5 @@
+---
+import type { Props } from '@astrojs/starlight/props';
+---
+
+Герман Титов
\ No newline at end of file
diff --git a/src/components/Question.astro b/src/components/Question.astro
index 6d55e46..72f4a4e 100644
--- a/src/components/Question.astro
+++ b/src/components/Question.astro
@@ -2,29 +2,10 @@
const { answer, ballast, explanation } = Astro.props;
---
-
-