diff --git a/components/content/examples/code/ColorsCode.vue b/components/content/examples/code/ColorsCode.vue
new file mode 100644
index 0000000..8733c0b
--- /dev/null
+++ b/components/content/examples/code/ColorsCode.vue
@@ -0,0 +1,7 @@
+
+
+ console.log(welcome)
+ var chakra = 'awesome!'
+ npm install chakra
+
+
\ No newline at end of file
diff --git a/components/content/examples/code/SimpleCode.vue b/components/content/examples/code/SimpleCode.vue
new file mode 100644
index 0000000..7a79ad0
--- /dev/null
+++ b/components/content/examples/code/SimpleCode.vue
@@ -0,0 +1,3 @@
+
+ Hello world
+
\ No newline at end of file
diff --git a/components/content/examples/code/VariantCode.vue b/components/content/examples/code/VariantCode.vue
new file mode 100644
index 0000000..2d4520c
--- /dev/null
+++ b/components/content/examples/code/VariantCode.vue
@@ -0,0 +1,7 @@
+
+
+ Outline
+ Solid
+ Solid
+
+
\ No newline at end of file
diff --git a/content/4.components/code.md b/content/4.components/code.md
new file mode 100644
index 0000000..06cda91
--- /dev/null
+++ b/content/4.components/code.md
@@ -0,0 +1,69 @@
+---
+title: Code
+description: Code component
+version: 2.0+
+---
+# Code
+
+Code is a component used to display inline code. It is composed of the `Box` component with a font family of `mono` for displaying code.
+
+## Import
+
+```js
+import { CCode } from "@chakra-ui/vue-next"
+```
+
+## Usage
+
+::showcase
+:simple-code
+::
+
+```html
+Hello world
+```
+
+## Colors
+
+You can change the color scheme of the component by passing the `colorScheme` prop.
+
+::showcase
+:colors-code
+::
+
+```html
+
+ console.log(welcome)
+ var chakra = 'awesome!'>
+ npm install chakra
+
+```
+
+## Variant
+
+You can change the variant of the component by passing the `variant` prop.
+
+::showcase
+:variant-code
+::
+
+```html
+
+ Outline
+ Solid
+ Solid
+
+```
+
+## Props
+
+| Name | Type | Default | Description |
+|---------------|------------------------------------|----------|---------------------------------------|
+| `colorScheme` | `string` | `grey` | The color scheme to use for the code. |
+| `variant` | `"solid" \| "subtle" \| "outline"` | `subtle` | The variant of the Code |
+
+## Slots
+
+| Name | Description |
+|---------------|---------------------------------------|
+| `default` | Used for the `CCode` content. |
\ No newline at end of file