diff --git a/public/HeroSvg.png b/public/HeroSvg.png new file mode 100644 index 0000000..d576ab7 Binary files /dev/null and b/public/HeroSvg.png differ diff --git a/src/App.jsx b/src/App.jsx index 6fdfd85..c81f3ee 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -35,6 +35,7 @@ import NewslettersPage from "./views/app/Newsletters"; import SuggestionPage from "./views/app/Suggestions"; import Settings from "./views/app/Settings"; import Community from "./views/app/Community"; +import CommunityLanding from "./views/app/CommunityLanding"; function App() { const [loading, setLoading] = useState(false); @@ -63,6 +64,7 @@ function App() { + diff --git a/src/containers/Hero/index.jsx b/src/containers/Hero/index.jsx index a1c3c18..6c90e58 100644 --- a/src/containers/Hero/index.jsx +++ b/src/containers/Hero/index.jsx @@ -22,7 +22,7 @@ function Hero() { ✨ AI-Powered 3D T-Shirts -

+

Elevate Your Style {" "} diff --git a/src/pages/CommunityLanding/index.jsx b/src/pages/CommunityLanding/index.jsx new file mode 100644 index 0000000..4d25f44 --- /dev/null +++ b/src/pages/CommunityLanding/index.jsx @@ -0,0 +1,346 @@ +import React from "react"; + +const CommunityLanding = () => { + return ( +
+
+
+
+

+ Community +

+

+ The Fashion Froze community is a globally distributed home to + developers,
+ coin holders, and validators supporting the protocol. +

+
+
+
+
+
+
+ | +

Community

+ Platforms +
+
+

+ Here's where you can engage with the community
and + get all the latest updates +

+
+
+
+
+
    +
    +
    + + + +
  • Twitter
  • +
    +
    +

    + {" "} + --700+ followers +

    +
    +
    +
    +
    + + + +
  • Telegram
  • +
    +
    +

    + {" "} + --900+ members +

    +
    +
    +
    +
    + + + +
  • LinkedIn
  • +
    +
    +

    + {" "} + --1000+ connections +

    +
    +
    +
+
+
+
    +
    +
    + + + + + + + +
  • Discord
  • +
    +
    +

    + {" "} + --500+ members +

    +
    +
    +
    +
    + + + +
  • Reddit
  • +
    +
    +

    + {" "} + --2000+ subscribers +

    +
    +
    +
    +
    + + + + + +
  • Email
  • +
    +
    +

    + {" "} + fashionfroze3d@gamil.com +

    +
    +
    +
+
+
+
    +
    +
    + + + + + + + + + + + + + + + + + + +
  • + Documentation +
  • +
    +
    +

    + {" "} + -- 100 Articles +

    +
    +
    +
    +
    + + + +
  • Blog
  • +
    +
    +

    + {" "} + -- 50+ Articles +

    +
    +
    +
    +
    + + + +
  • GitHub
  • +
    +
    +

    + {" "} + -- 145+ followers +

    +
    +
    +
+
+
+
+
+ ); +}; + +export default CommunityLanding; diff --git a/src/views/app/CommunityLanding/index.jsx b/src/views/app/CommunityLanding/index.jsx new file mode 100644 index 0000000..ad6d493 --- /dev/null +++ b/src/views/app/CommunityLanding/index.jsx @@ -0,0 +1,13 @@ +import React from "react"; +import HomeLayout from "../../../layout/HomeLayout.jsx"; +import CommunityLanding from "../../../pages/CommunityLanding/index.jsx"; + +function Guide() { + return ( + + + + ); +} + +export default Guide;