From afc9e5be0f24c0ac12673fefb0a927adc101d409 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sun, 14 Dec 2025 14:26:11 -0500 Subject: [PATCH] Added Media starter --- src/AppRouters.jsx | 2 + src/component/layout/layoutcom/UserFooter.jsx | 2 +- src/component/layout/layoutcom/UserMenu.jsx | 1 + src/component/mymedia/MyMedia.js | 63 +++++++++++++++++++ src/links/siteLinks.js | 1 + src/views/MyMediaPage.jsx | 8 +++ 6 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 src/component/mymedia/MyMedia.js create mode 100644 src/views/MyMediaPage.jsx diff --git a/src/AppRouters.jsx b/src/AppRouters.jsx index 1bf67de..02d7dbf 100644 --- a/src/AppRouters.jsx +++ b/src/AppRouters.jsx @@ -26,6 +26,7 @@ import ProfileCompletePage from './views/ProfileCompletePage'; import SubscribePage from './views/Subscribe' import StartPage from "./views/StartPage"; import TrafficPage from "./views/TrafficPage"; +import MyMediaPage from './views/MyMediaPage.jsx'; function AppRouters() { return ( @@ -52,6 +53,7 @@ function AppRouters() { }/> }/> }/> + }/> }/> }/> }/> diff --git a/src/component/layout/layoutcom/UserFooter.jsx b/src/component/layout/layoutcom/UserFooter.jsx index 7950bb9..e6c04bf 100644 --- a/src/component/layout/layoutcom/UserFooter.jsx +++ b/src/component/layout/layoutcom/UserFooter.jsx @@ -11,7 +11,7 @@ export default function UserFooter(){

© Copyright {year}. All rights reserved.

-

A division of autoMedSys A.I.

+

A division of autoMedSys A.I.

diff --git a/src/component/layout/layoutcom/UserMenu.jsx b/src/component/layout/layoutcom/UserMenu.jsx index 1f2e24d..d261294 100644 --- a/src/component/layout/layoutcom/UserMenu.jsx +++ b/src/component/layout/layoutcom/UserMenu.jsx @@ -48,6 +48,7 @@ export default function UserMenu() {
    +
  • Files and Media
  • Subscription
  • Settings
diff --git a/src/component/mymedia/MyMedia.js b/src/component/mymedia/MyMedia.js new file mode 100644 index 0000000..a003e4c --- /dev/null +++ b/src/component/mymedia/MyMedia.js @@ -0,0 +1,63 @@ +import React from "react"; +import BreadcrumbComBS from "../breadcrumb/BreadcrumbComBS"; + + +export default function MyMedia(){ + + return( + <> + +
+ + +
+ +
+ +
+ {/*
*/} + {/*
*/} + {/*

Tab vertical

*/} + {/*
*/} + {/*
*/} +
+
+ +
+
+

Positive pleasure-oriented goals are much more powerful motivators than negative fear-based ones. Although each is successful separately, the right combination of both is the most powerful motivational force known to humankind.Make a list of your achievements toward your long-term goal and remind yourself that intentions don’t count, only action’s.

+
+
+

Reflect and experiment until you find the right combination of motivators for your personality and your personal goals. Do it today. Remind yourself of someone you know who died suddenly and the fact that there is no guarantee that tomorrow will come.

+
+
+

Commitment is something that comes from understanding that everything has its price and then having the willingness to pay that price. This is important because nobody wants to put significant effort into something, only to find out after the fact that the price was too high. We all know people who live this truth.Give yourself the power of responsibility.

+
+
+

I truly believe Augustine’s words are true and if you look at history you know it is true. There are many people in the world with amazing talents who realize only a small percentage of their potential. We all know people who live this truth.Give yourself the power of responsibility. Remind yourself the only thing stopping you is yourself.

+
+
+
+
+
+
+
+ + +
+ + ) +} \ No newline at end of file diff --git a/src/links/siteLinks.js b/src/links/siteLinks.js index 81d9f31..ec8918c 100644 --- a/src/links/siteLinks.js +++ b/src/links/siteLinks.js @@ -11,6 +11,7 @@ const siteLinks = { comments: '/comments', reports: '/reports', subscription: '/subscription', + my_media: '/my-files', subscription_success:'/subscription-success', subscribe: '/subscribe', onboard: '/subscription', diff --git a/src/views/MyMediaPage.jsx b/src/views/MyMediaPage.jsx new file mode 100644 index 0000000..1ed2695 --- /dev/null +++ b/src/views/MyMediaPage.jsx @@ -0,0 +1,8 @@ +import React from 'react' +import MyMedia from "../component/mymedia/MyMedia"; + +export default function MyMediaPage() { + return ( + + ) +} \ No newline at end of file