This repository has no description
1// src/pages/ZenPage.jsx
2import React from "react";
3import "./MatterLoadingAnimation.css";
4import "./ZenPage.css";
5import MatterLoadingAnimation from "./MatterLoadingAnimation";
6
7const ZenPage = () => {
8 return (
9 <div className="zen-container" style={{
10 display: "flex",
11 flexDirection: "column",
12 alignItems: "center",
13 justifyContent: "center",
14 minHeight: "80vh",
15 background: "none"
16 }}>
17 <MatterLoadingAnimation />
18 </div>
19 );
20};
21
22export default ZenPage;