From 4d8048adb7d3d5e1d950fcb80a65d5b18dc0b202 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Wed, 10 Jul 2024 21:14:05 +0530 Subject: [PATCH 1/5] Create licensing.tsx --- src/components/shared/licensing.tsx | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/components/shared/licensing.tsx diff --git a/src/components/shared/licensing.tsx b/src/components/shared/licensing.tsx new file mode 100644 index 0000000..e69de29 From 8569d8fd0169e4cf980efaa51b0f3ffbfc274b97 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Wed, 10 Jul 2024 21:15:02 +0530 Subject: [PATCH 2/5] Update licensing.tsx --- src/components/shared/licensing.tsx | 45 +++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/src/components/shared/licensing.tsx b/src/components/shared/licensing.tsx index e69de29..27adfca 100644 --- a/src/components/shared/licensing.tsx +++ b/src/components/shared/licensing.tsx @@ -0,0 +1,45 @@ +import React from "react"; + +const Licensing = () => { + return ( +
+
+

+ Licensing +

+

+ Welcome to Blox AI, It is licensed under the MIT License. This page outlines the terms of the license and provide details on how you can use, modify and distribute our project. +

+

+ MIT License +

+

+ Copyright (c) 2024 Subhadeep Roy & Anish Biswas +

+

+ Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: +

+

+ The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. +

+

+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +

+
+
+ ); +}; + +export default Licensing; From 43fd123df52a26db2af75ba6189562c6f0c25ee0 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Wed, 10 Jul 2024 21:15:16 +0530 Subject: [PATCH 3/5] Create page.tsx --- src/app/licensing/page.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/app/licensing/page.tsx diff --git a/src/app/licensing/page.tsx b/src/app/licensing/page.tsx new file mode 100644 index 0000000..dea3ea3 --- /dev/null +++ b/src/app/licensing/page.tsx @@ -0,0 +1,16 @@ +"use client"; +import Licensing from "@/components/shared/licensing"; +import Header from "@/components/shared/Header"; +import Footer from "@/components/shared/Footer"; + +const Page = () => { + return ( +
+
+ +
+
+ ); +}; + +export default Page; From e078c621043b0bcd047e6b4176be21838af71bdb Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Wed, 10 Jul 2024 21:15:32 +0530 Subject: [PATCH 4/5] Update footer.tsx --- src/components/shared/Footer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shared/Footer.tsx b/src/components/shared/Footer.tsx index 6382677..20ddba5 100644 --- a/src/components/shared/Footer.tsx +++ b/src/components/shared/Footer.tsx @@ -141,7 +141,7 @@ const Footer: React.FC = () => {
  • License From f3b35fbb4cc404298ec212db7ce2ccd462479968 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Wed, 10 Jul 2024 21:20:52 +0530 Subject: [PATCH 5/5] Update licensing.tsx --- src/components/shared/licensing.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/shared/licensing.tsx b/src/components/shared/licensing.tsx index 27adfca..0801560 100644 --- a/src/components/shared/licensing.tsx +++ b/src/components/shared/licensing.tsx @@ -37,6 +37,9 @@ const Licensing = () => { OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    +

    + For more information check: LICENSE +

    );