Moved and renamed homepage
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import "./app.css";
|
import "../app.css";
|
||||||
import { motion } from "motion/react";
|
import { motion } from "motion/react";
|
||||||
|
|
||||||
export function Welcome() {
|
export function HomePage() {
|
||||||
const [rolling, setRolling] = useState(false);
|
const [rolling, setRolling] = useState(false);
|
||||||
const [showResetPopup, setShowResetPopup] = useState(false);
|
const [showResetPopup, setShowResetPopup] = useState(false);
|
||||||
|
|
||||||
@@ -44,7 +44,7 @@ export function Welcome() {
|
|||||||
<div className="w-full overflow-hidden mt-4">
|
<div className="w-full overflow-hidden mt-4">
|
||||||
<motion.div
|
<motion.div
|
||||||
className="flex space-x-3"
|
className="flex space-x-3"
|
||||||
animate={rolling ? { x: [15000, -15110] } : null}
|
animate={rolling ? { x: [15000, -15110] } : undefined}
|
||||||
transition={
|
transition={
|
||||||
rolling
|
rolling
|
||||||
? {
|
? {
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import type { Route } from "./+types/home";
|
import type { Route } from "./+types/home";
|
||||||
import { Welcome } from "../index";
|
import { HomePage } from "../pages/home";
|
||||||
|
|
||||||
export function meta({}: Route.MetaArgs) {
|
export function meta({}: Route.MetaArgs) {
|
||||||
return [
|
return [
|
||||||
@@ -9,5 +9,5 @@ export function meta({}: Route.MetaArgs) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return <Welcome />;
|
return <HomePage />;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user