diff --git a/.env b/.env new file mode 100644 index 0000000..72ee5d0 --- /dev/null +++ b/.env @@ -0,0 +1,2 @@ +REACT_APP_NAME=CUBETIQ React App +REACT_APP_DESCRIPTION=CUBETIQ React App template for general user... \ No newline at end of file diff --git a/public/index.html b/public/index.html index 7506330..2c97be6 100644 --- a/public/index.html +++ b/public/index.html @@ -6,10 +6,10 @@ - + - CUBETIQ React App + %REACT_APP_NAME% diff --git a/src/App.css b/src/App.css index 74b5e05..e994711 100644 --- a/src/App.css +++ b/src/App.css @@ -1,38 +1,3 @@ .App { text-align: center; -} - -.App-logo { - height: 40vmin; - pointer-events: none; -} - -@media (prefers-reduced-motion: no-preference) { - .App-logo { - animation: App-logo-spin infinite 20s linear; - } -} - -.App-header { - background-color: #282c34; - min-height: 100vh; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: calc(10px + 2vmin); - color: white; -} - -.App-link { - color: #61dafb; -} - -@keyframes App-logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} +} \ No newline at end of file diff --git a/src/App.test.tsx b/src/App.test.tsx deleted file mode 100644 index 2a68616..0000000 --- a/src/App.test.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from 'react'; -import { render, screen } from '@testing-library/react'; -import App from './App'; - -test('renders learn react link', () => { - render(); - const linkElement = screen.getByText(/learn react/i); - expect(linkElement).toBeInTheDocument(); -}); diff --git a/src/App.tsx b/src/App.tsx index a53698a..1380edd 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,26 +1,10 @@ import React from 'react'; -import logo from './logo.svg'; import './App.css'; -function App() { +export default function App() { return (
-
- logo -

- Edit src/App.tsx and save to reload. -

- - Learn React - -
+

CUBETIQ

); -} - -export default App; +} \ No newline at end of file diff --git a/src/index.css b/src/index.css index ec2585e..826a946 100644 --- a/src/index.css +++ b/src/index.css @@ -5,9 +5,4 @@ body { sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -} - -code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', - monospace; -} +} \ No newline at end of file diff --git a/src/logo.svg b/src/logo.svg deleted file mode 100644 index 9dfc1c0..0000000 --- a/src/logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file