From c6fca93194088647831649fcef83aed8fdb5d307 Mon Sep 17 00:00:00 2001 From: "jacob-ai-bot[bot]" <156382575+jacob-ai-bot[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 20:38:37 +0000 Subject: [PATCH 1/2] JACoB commit for Issue 158 --- src/components/DesignedForDevelopers.tsx | 73 ++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/components/DesignedForDevelopers.tsx diff --git a/src/components/DesignedForDevelopers.tsx b/src/components/DesignedForDevelopers.tsx new file mode 100644 index 0000000..de4b166 --- /dev/null +++ b/src/components/DesignedForDevelopers.tsx @@ -0,0 +1,73 @@ +import { FC } from "react"; + +const DesignedForDevelopers: FC = () => { + return ( +
+
+
+
Designed for
+
+
Developers
+
,
+
+
Tailored for Teams
+
+ JACoB is built from the ground up to address the specific needs of software development. +
+
+
+
+
+
Efficiency Boost
+
+ ACoB automates the repetitive and mundane, allowing you to concentrate on innovation and complex problem-solving. +
+
+
+
+
+
Quality Assurance
+
+ With JACoB's AI-driven reviews, your code stays clean and maintainable. +
+
+
+
+
+
Rapid Integration
+
+ JACoB fits into your workflow from day one, adapting to your tools and preferences. +
+
+
+
+
+
Scalable Development
+
+ Handle more projects and complex code without expanding your team. +
+
+
+
+
+
Learning & Growth
+
+ JACoB continuously learns from your codebase, contributing more effectively over time. +
+
+
+
+
+
Security & Control
+
+ Hosted within your environment, JACoB ensures your code remains secure and proprietary. +
+
+
+
+
+
+ ); +}; + +export default DesignedForDevelopers; \ No newline at end of file From a7675de8b727d89f79f42a4f3a8edaeab70fddd8 Mon Sep 17 00:00:00 2001 From: "jacob-local-kevin[bot]" <164088400+jacob-local-kevin[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 13:39:37 -0700 Subject: [PATCH 2/2] JACoB commit: add storybook story /src/components/DesignedForDevelopers.stories.tsx --- .../DesignedForDevelopers.stories.tsx | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/components/DesignedForDevelopers.stories.tsx diff --git a/src/components/DesignedForDevelopers.stories.tsx b/src/components/DesignedForDevelopers.stories.tsx new file mode 100644 index 0000000..0a7d8ef --- /dev/null +++ b/src/components/DesignedForDevelopers.stories.tsx @@ -0,0 +1,28 @@ +import type { Meta, StoryObj } from "@storybook/react"; +import DesignedForDevelopers from "./DesignedForDevelopers"; + +const meta = { + title: "Components/DesignedForDevelopers", + component: DesignedForDevelopers, + parameters: { + layout: "centered", + }, + tags: ["autodocs"], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = {}; + +export const WithCustomBackground: Story = { + parameters: { + backgrounds: { default: 'lightgray' }, + }, +}; + +export const CenteredLayout: Story = { + parameters: { + layout: 'centered', + }, +}; \ No newline at end of file