Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Our Product
# BendBridge

Our app creates AI-powered, personalized educational guides for any topic. Provided with a request defining the user’s goal and feedback identifying their prior experiences and learning techniques, MindBridge generates a custom interactive roadmap with clear summaries, tutorials, and practice problems for each phase. With an easy-to-follow step-by-step guide, it is easier than ever to attain one’s goals, hone existing skills, or cultivate new ones. The combination of trackable, achievable steps, enables user productivity by reducing the time spent searching for resources that match your current skill level or appeal to your learning style. Additionally, visualizing progress improves motivation and consistency, and subdividing the problem into smaller, actionable steps makes the problem more approachable. Only with us can you get this detailed level of customization with our virtually limitless number of topics.
Our app creates AI-powered, personalized educational guides for any topic. Provided with a request defining the user’s goal and feedback identifying their prior experiences and learning techniques, BendBridge generates a custom interactive roadmap with clear summaries, tutorials, and practice problems for each phase. With an easy-to-follow step-by-step guide, it is easier than ever to attain one’s goals, hone existing skills, or cultivate new ones. The combination of trackable, achievable steps, enables user productivity by reducing the time spent searching for resources that match your current skill level or appeal to your learning style. Additionally, visualizing progress improves motivation and consistency, and subdividing the problem into smaller, actionable steps makes the problem more approachable. Only with us can you get this detailed level of customization with our virtually limitless number of topics.


On the front end, the learner begins by entering a topic that they would like to learn more about in the text area. They are then routed to a short section asking for prior knowledge and later their learning style. Finally, they are given the roadmap for their goal, and when they click a step it provides a description, an example, and additional resources.
Expand Down
4 changes: 2 additions & 2 deletions src/app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const geistMono = localFont({
});

export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "BendBridge",
description: "AI-powered personalized learning roadmaps.",
};

export default function RootLayout({ children }) {
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import TitleCard from "@/components/TitleCard";
export default function Home() {
return (
<div>
<TitleCard title="MindBridge"/>
<TitleCard title="BendBridge"/>
</div>
);
}
2 changes: 1 addition & 1 deletion src/components/TitleCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function TitleCard() {
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.8, delay: 0.4 }}
>
MindBridge
BendBridge
</motion.h1>

<motion.p
Expand Down