chore: 🔥 delete unacessary deps

by Sivritkin Dmitriy

1@@ -0,0 +1,2 @@
2+# Set token for use API GitHub, create a new token in your GitHub account
3+GITHUB_TOKEN="ghp_XXX"@@ -0,0 +1,13 @@
4+import { Prism as SyntaxHighlighter } from "react-syntax-highlighter";
5+import { materialDark as style } from "react-syntax-highlighter/dist/esm/styles/prism";
6+
7+export const DiffComp = ({ text }: { text: string }) => {
8+  return (
9+    <div>
10+      <h1>Diff Component</h1>
11+      <SyntaxHighlighter language="diff" style={style}>
12+        {text}
13+      </SyntaxHighlighter>
14+    </div>
15+  );
16+};@@ -1,76 +1,76 @@
17 @tailwind base;
18-  @tailwind components;
19-  @tailwind utilities;
20+@tailwind components;
21+@tailwind utilities;
22 
23-  @layer base {
24-    :root {
25-      --background: 0 0% 100%;
26-      --foreground: 0 0% 3.9%;
27+@layer base {
28+  :root {
29+    --background: 0 0% 100%;
30+    --foreground: 0 0% 3.9%;
31 
32-      --card: 0 0% 100%;
33-      --card-foreground: 0 0% 3.9%;
34+    --card: 0 0% 100%;
35+    --card-foreground: 0 0% 3.9%;
36 
37-      --popover: 0 0% 100%;
38-      --popover-foreground: 0 0% 3.9%;
39+    --popover: 0 0% 100%;
40+    --popover-foreground: 0 0% 3.9%;
41 
42-      --primary: 0 0% 9%;
43-      --primary-foreground: 0 0% 98%;
44+    --primary: 0 0% 9%;
45+    --primary-foreground: 0 0% 98%;
46 
47-      --secondary: 0 0% 96.1%;
48-      --secondary-foreground: 0 0% 9%;
49+    --secondary: 0 0% 96.1%;
50+    --secondary-foreground: 0 0% 9%;
51 
52-      --muted: 0 0% 96.1%;
53-      --muted-foreground: 0 0% 45.1%;
54+    --muted: 0 0% 96.1%;
55+    --muted-foreground: 0 0% 45.1%;
56 
57-      --accent: 0 0% 96.1%;
58-      --accent-foreground: 0 0% 9%;
59+    --accent: 0 0% 96.1%;
60+    --accent-foreground: 0 0% 9%;
61 
62-      --destructive: 0 84.2% 60.2%;
63-      --destructive-foreground: 0 0% 98%;
64+    --destructive: 0 84.2% 60.2%;
65+    --destructive-foreground: 0 0% 98%;
66 
67-      --border: 0 0% 89.8%;
68-      --input: 0 0% 89.8%;
69-      --ring: 0 0% 3.9%;
70+    --border: 0 0% 89.8%;
71+    --input: 0 0% 89.8%;
72+    --ring: 0 0% 3.9%;
73 
74-      --radius: 0.5rem;
75-    }
76+    --radius: 0.5rem;
77+  }
78 
79-    .dark {
80-      --background: 0 0% 3.9%;
81-      --foreground: 0 0% 98%;
82+  .dark {
83+    --background: 0 0% 3.9%;
84+    --foreground: 0 0% 98%;
85 
86-      --card: 0 0% 3.9%;
87-      --card-foreground: 0 0% 98%;
88+    --card: 0 0% 3.9%;
89+    --card-foreground: 0 0% 98%;
90 
91-      --popover: 0 0% 3.9%;
92-      --popover-foreground: 0 0% 98%;
93+    --popover: 0 0% 3.9%;
94+    --popover-foreground: 0 0% 98%;
95 
96-      --primary: 0 0% 98%;
97-      --primary-foreground: 0 0% 9%;
98+    --primary: 0 0% 98%;
99+    --primary-foreground: 0 0% 9%;
100 
101-      --secondary: 0 0% 14.9%;
102-      --secondary-foreground: 0 0% 98%;
103+    --secondary: 0 0% 14.9%;
104+    --secondary-foreground: 0 0% 98%;
105 
106-      --muted: 0 0% 14.9%;
107-      --muted-foreground: 0 0% 63.9%;
108+    --muted: 0 0% 14.9%;
109+    --muted-foreground: 0 0% 63.9%;
110 
111-      --accent: 0 0% 14.9%;
112-      --accent-foreground: 0 0% 98%;
113+    --accent: 0 0% 14.9%;
114+    --accent-foreground: 0 0% 98%;
115 
116-      --destructive: 0 62.8% 30.6%;
117-      --destructive-foreground: 0 0% 98%;
118+    --destructive: 0 62.8% 30.6%;
119+    --destructive-foreground: 0 0% 98%;
120 
121-      --border: 0 0% 14.9%;
122-      --input: 0 0% 14.9%;
123-      --ring: 0 0% 83.1%;
124-    }
125+    --border: 0 0% 14.9%;
126+    --input: 0 0% 14.9%;
127+    --ring: 0 0% 83.1%;
128   }
129+}
130 
131-  @layer base {
132-    * {
133-      @apply border-border;
134-    }
135-    body {
136-      @apply bg-background text-foreground;
137-    }
138-  }
139\ No newline at end of file
140+@layer base {
141+  * {
142+    @apply border-border;
143+  }
144+  body {
145+    @apply bg-background text-foreground;
146+  }
147+}