mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 11:03:50 +00:00
Clean up components
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import PageTransition from "@/components/transitions";
|
import PageTransition from "@/components/ui/transitions";
|
||||||
|
|
||||||
export default function rootTemplate({ children }) {
|
export default function rootTemplate({ children }) {
|
||||||
return <PageTransition>{children}</PageTransition>;
|
return <PageTransition>{children}</PageTransition>;
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
const Footer = () => {
|
|
||||||
return (
|
|
||||||
<div></div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Footer;
|
|
||||||
7
src/web/src/components/footer/content.jsx
Normal file
7
src/web/src/components/footer/content.jsx
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
function Content() {
|
||||||
|
return (
|
||||||
|
<div></div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Content;
|
||||||
12
src/web/src/components/footer/index.jsx
Normal file
12
src/web/src/components/footer/index.jsx
Normal 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;
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { motion } from 'framer-motion';
|
|
||||||
import Typewriter from 'typewriter-effect';
|
import Typewriter from 'typewriter-effect';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import React, { useRef } from 'react';
|
import React from 'react';
|
||||||
import Content from '@/components/hero/sections';
|
import Content from '@/components/hero/content';
|
||||||
|
|
||||||
function Hero() {
|
function Hero() {
|
||||||
return (
|
return (
|
||||||
@@ -12,4 +12,3 @@ function Hero() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default Hero;
|
export default Hero;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user