You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: TRADEMARK.md
+11-11
Original file line number
Diff line number
Diff line change
@@ -12,15 +12,15 @@ This policy encompasses all trademarks and service marks, whether they are regis
12
12
13
13
## 1. GENERAL GUIDELINES
14
14
15
-
* Whenever you use one of our marks, you must always do so in a way that does not mislead anyone about what they are getting and from whom. For example, you cannot say you are distributing the Brainly Gene software when you’re distributing a modified version of it, because recipients may not understand the differences between your modified versions and our own.
15
+
- Whenever you use one of our marks, you must always do so in a way that does not mislead anyone about what they are getting and from whom. For example, you cannot say you are distributing the Brainly Gene software when you’re distributing a modified version of it, because recipients may not understand the differences between your modified versions and our own.
16
16
17
-
* You also cannot use our logo on your website in a way that suggests that your website is an official website or that we endorse your website. You may not use or register our marks, or variations of them as part of your own trademark, service mark, domain name, company name, trade name, product name or service name.
17
+
- You also cannot use our logo on your website in a way that suggests that your website is an official website or that we endorse your website. You may not use or register our marks, or variations of them as part of your own trademark, service mark, domain name, company name, trade name, product name or service name.
18
18
19
-
* You can, though, say you like the Brainly Gene software, that you participate in the Brainly Gene community, that you are providing an unmodified version of the Brainly Gene software.
19
+
- You can, though, say you like the Brainly Gene software, that you participate in the Brainly Gene community, that you are providing an unmodified version of the Brainly Gene software.
20
20
21
-
* Trademark law does not allow your use of names or trademarks that are too similar to ours. You therefore may not use an obvious variation of any of our marks or any phonetic equivalent, foreign language equivalent, takeoff, or abbreviation for a similar or compatible product or service.
21
+
- Trademark law does not allow your use of names or trademarks that are too similar to ours. You therefore may not use an obvious variation of any of our marks or any phonetic equivalent, foreign language equivalent, takeoff, or abbreviation for a similar or compatible product or service.
22
22
23
-
* You are not authorized to use the Brainly marks or logos to convey or imply an endorsement by or partnership with Brainly without Brainly’s prior written approval.
23
+
- You are not authorized to use the Brainly marks or logos to convey or imply an endorsement by or partnership with Brainly without Brainly’s prior written approval.
24
24
25
25
## 2. ACCEPTABLE USES
26
26
@@ -32,7 +32,7 @@ When you redistribute an unmodified copy of our software \-- the exact form in w
32
32
33
33
If you distribute a modified version of our software, you must **remove** all of our logos from it. To assist you with this, we have removed our logos from our source trees, and include them only in our binaries.You may use our word marks, but not our logos, to truthfully describe the origin of the software that you are providing.
34
34
35
-
For example, if the code you are distributing is a modification of our software, you may say, “*This software is derived from the source code for Brainly Gene software*.”
35
+
For example, if the code you are distributing is a modification of our software, you may say, “_This software is derived from the source code for Brainly Gene software_.”
36
36
37
37
### Statements about compatibility
38
38
@@ -42,11 +42,11 @@ You may use the word marks and Brainly Gene logo s to truthfully describe the re
42
42
43
43
If you wish to describe your product with reference to the Brainly Gene software, here are the conditions under which you may do so. You may call your software “XYZ” (where “XYZ” is your product name) for Brainly Gene only if:
44
44
45
-
* All versions of the Brainly Gene software you deliver with your product are the exact binaries provided by us.
45
+
- All versions of the Brainly Gene software you deliver with your product are the exact binaries provided by us.
46
46
47
-
* Your product is fully compatible with the APIs for the Brainly Gene software described at <https://github.com/brainly/gene>.
47
+
- Your product is fully compatible with the APIs for the Brainly Gene software described at <https://github.com/brainly/gene>.
48
48
49
-
* You use the following legend in marketing materials or product descriptions: “Brainly is a trademark of Brainly sp. z o.o. <https://github.com/brainly/gene”>
49
+
- You use the following legend in marketing materials or product descriptions: “Brainly is a trademark of Brainly sp. z o.o. <https://github.com/brainly/gene”>
50
50
51
51
### No Domain Names
52
52
@@ -58,7 +58,7 @@ When you have the right to use our mark, here is how to display it.
58
58
59
59
### Trademark marking and legends
60
60
61
-
Place the following notice at the foot of the page where you have used the mark: “*Brainly is trademark of Brainly sp. z o.o.*”
61
+
Place the following notice at the foot of the page where you have used the mark: “_Brainly is trademark of Brainly sp. z o.o._”
62
62
63
63
### Use of trademarks in text
64
64
@@ -76,4 +76,4 @@ However, when the context requires the use of black-and-white graphics and the l
76
76
77
77
### This Document
78
78
79
-
These guidelines are based on the Model Trademark Guidelines, available at <http://www.modeltrademarkguidelines.org>, used under a Creative Commons Attribution 3.0 Unported license: [https://creativecommons.org/licenses/by/3.0/deed.en\_US](https://creativecommons.org/licenses/by/3.0/deed.en_US).
79
+
These guidelines are based on the Model Trademark Guidelines, available at <http://www.modeltrademarkguidelines.org>, used under a Creative Commons Attribution 3.0 Unported license: [https://creativecommons.org/licenses/by/3.0/deed.en_US](https://creativecommons.org/licenses/by/3.0/deed.en_US).
This structure provides a clear and maintainable way to add new handlers for each route in the BFF, utilizing standard REST practices and custom middleware as needed.
131
+
This structure provides a clear and maintainable way to add new handlers for each route in the BFF, utilizing standard REST practices and custom middleware as needed.
The Backend for Frontend (BFF) pattern is an architectural approach where a dedicated backend service is built specifically to serve a particular frontend application (e.g., mobile app, web app). BFFs help streamline the communication between frontend and backend, enabling tailored responses, optimized data handling, and simplified security for each client type. This approach can improve performance and user experience by reducing the amount of data transferred and simplifying API calls.
8
8
9
-
10
9
In our implementation, we use a Next.js application for creating the BFF because our development team is already familiar with the framework. Additionally, Next.js makes it easy to add API routes directly within the app, which simplifies backend development and reduces setup time.
11
10
12
-
13
-
**Note:** This section is a work in progress and will be expanded with more examples and use cases.
11
+
**Note:** This section is a work in progress and will be expanded with more examples and use cases.
0 commit comments