Skip to content

Commit

Permalink
Merge pull request #87 from VishalMyla/patch01
Browse files Browse the repository at this point in the history
Clean up Hero file
  • Loading branch information
GabrielCTroia authored Oct 21, 2023
2 parents ca48494 + 96c89f1 commit 9a891ef
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions apps/movex-docs/modules/home/Hero.tsx
Original file line number Diff line number Diff line change
@@ -1,24 +1,12 @@
import React from 'react';
import { useEffect, useState } from 'react';
import { Button } from '../../components/Button';
import Link from 'next/link';
import { useCurrentTheme } from '../../hooks/useCurrentTheme';
import { Code, Pre } from 'nextra/components';

type Props = {};

const appTypes = ['Apps', 'Game', 'Chat', 'To-Do', 'Doc'];
const lightColors = [
'text-red-500',
// 'text-blue-500',
'text-green-500',
'text-yellow-500',
'text-orange-500',
'text-purple-500',
];
const darkColors = [
'text-red-500',
// 'text-blue-500',
'text-green-500',
'text-yellow-500',
'text-orange-500',
Expand All @@ -31,7 +19,6 @@ export const Hero: React.FC<Props> = () => {
appType: 0,
});

const currentTheme = useCurrentTheme();

useEffect(() => {
const timeoutId = setTimeout(() => {
Expand Down

0 comments on commit 9a891ef

Please sign in to comment.