chore: cleanup

This commit is contained in:
Bereket Engida
2025-01-06 14:30:39 +03:00
parent 753f930e88
commit 9f2e45b8c7
525 changed files with 218 additions and 1357 deletions

View File

@@ -1,7 +1,7 @@
"use client";
import React, { useState } from "react";
import { Highlight, themes } from "prism-react-renderer";
import { useState } from "react";
import { Highlight } from "prism-react-renderer";
import { Check, Copy } from "lucide-react";
import { Button } from "@/components/ui/button";
import theme from "./theme";

View File

@@ -1,4 +1,3 @@
import React from "react";
import { cn } from "@/lib/utils";
import { X } from "lucide-react";

View File

@@ -1,4 +1,4 @@
import React, { useState } from "react";
import { useState } from "react";
import { TabBar } from "./tab-bar";
import { CodeEditor } from "./code-editor";
import { useAtom } from "jotai";

View File

@@ -1,4 +1,3 @@
import React from "react";
import { CodeTab } from "./code-tabs";
interface File {

View File

@@ -1,4 +1,4 @@
import { ChevronLeft, Copy, Mail, Moon, PlusIcon, Sun } from "lucide-react";
import { Moon, PlusIcon, Sun } from "lucide-react";
import {
Dialog,
DialogContent,
@@ -28,8 +28,6 @@ import { useAtom } from "jotai";
import { optionsAtom } from "./store";
import { useTheme } from "next-themes";
import { ScrollArea } from "../ui/scroll-area";
import { Button } from "../ui/button";
import Link from "next/link";
const frameworks = [
{
title: "Next.js",

View File

@@ -12,10 +12,8 @@ import {
import { Checkbox } from "@/components/ui/checkbox";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Key, Loader2 } from "lucide-react";
import { Key } from "lucide-react";
import Link from "next/link";
import { useRouter } from "next/navigation";
import { useState } from "react";
import { useAtom } from "jotai";
import { optionsAtom } from "./store";
import { socialProviders } from "./social-provider";

View File

@@ -14,7 +14,6 @@ import { Label } from "@/components/ui/label";
import { useState } from "react";
import Image from "next/image";
import { Loader2, X } from "lucide-react";
import { toast } from "sonner";
import { useRouter } from "next/navigation";
export function SignUp() {