Clean up components

This commit is contained in:
Timothy Pidashev
2024-04-10 12:16:36 -07:00
parent c16f92e576
commit 242e4d8a7f
8 changed files with 22 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
import PageTransition from "@/components/transitions";
import PageTransition from "@/components/ui/transitions";
export default function rootTemplate({ children }) {
return <PageTransition>{children}</PageTransition>;

View File

@@ -1,7 +0,0 @@
const Footer = () => {
return (
<div></div>
);
}
export default Footer;

View File

@@ -0,0 +1,7 @@
function Content() {
return (
<div></div>
);
}
export default Content;

View File

@@ -0,0 +1,12 @@
import Container from "@/components/ui/container";
import Content from "@/components/footer/content";
function Footer() {
return (
<Container>
<Content />
</Container>
);
}
export default Footer;

View File

@@ -1,6 +1,5 @@
"use client"
import { motion } from 'framer-motion';
import Typewriter from 'typewriter-effect';
import React from 'react';

View File

@@ -1,7 +1,7 @@
"use client"
import React, { useRef } from 'react';
import Content from '@/components/hero/sections';
import React from 'react';
import Content from '@/components/hero/content';
function Hero() {
return (
@@ -12,4 +12,3 @@ function Hero() {
}
export default Hero;