a
This commit is contained in:
@@ -13,14 +13,6 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
|||||||
import { CheckCircle, Flower2, Leaf, Palette, Sparkles } from "lucide-react";
|
import { CheckCircle, Flower2, Leaf, Palette, Sparkles } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
const timer = setTimeout(() => {
|
|
||||||
setIsLoading(false);
|
|
||||||
}, 5000);
|
|
||||||
return () => clearTimeout(timer);
|
|
||||||
}, []);
|
|
||||||
useEffect(() => {
|
|
||||||
setIsLoading(true);
|
|
||||||
}, []);
|
|
||||||
const [isLoading, setIsLoading] = useState(false);
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
@@ -35,12 +27,6 @@ export default function LandingPage() {
|
|||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="extrabold"
|
headingFontWeight="extrabold"
|
||||||
>
|
>
|
||||||
if (isLoading) {
|
|
||||||
return <div>Loading...</div>;
|
|
||||||
}
|
|
||||||
if (isLoading) {
|
|
||||||
return <div>Loading...</div>;
|
|
||||||
}
|
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
brandName="MossArt"
|
brandName="MossArt"
|
||||||
|
|||||||
@@ -37,10 +37,6 @@ const AnimationContainer = ({
|
|||||||
className={`${className} ${activeClass}`.trim()}
|
className={`${className} ${activeClass}`.trim()}
|
||||||
style={style}
|
style={style}
|
||||||
>
|
>
|
||||||
{/* Replace 'What We Create' with 'Explore' */}
|
|
||||||
<h2>Explore Us</h2>
|
|
||||||
<h2>Explore</h2>
|
|
||||||
<h2>Explore</h2>
|
|
||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user