Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create /src/components/DesignedForDevelopers.tsx #161

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
28 changes: 28 additions & 0 deletions src/components/DesignedForDevelopers.stories.tsx
Original file line number Diff line number Diff line change
@@ -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<typeof DesignedForDevelopers>;

export default meta;
type Story = StoryObj<typeof meta>;

export const Default: Story = {};

export const WithCustomBackground: Story = {
parameters: {
backgrounds: { default: 'lightgray' },
},
};

export const CenteredLayout: Story = {
parameters: {
layout: 'centered',
},
};
73 changes: 73 additions & 0 deletions src/components/DesignedForDevelopers.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
import { FC } from "react";

const DesignedForDevelopers: FC = () => {
return (
<div className="w-full min-h-screen flex flex-col items-center justify-center bg-white">
<div className="flex flex-col items-start justify-start w-full max-w-7xl">
<div className="flex flex-col items-start justify-start w-full max-w-lg p-4">
<div className="text-6xl text-dark-blue">Designed for</div>
<div className="flex items-center">
<div className="text-6xl text-center text-dark-blue">Developers</div>
<div className="text-6xl text-center text-dark-blue">,</div>
</div>
<div className="text-6xl text-dark-blue">Tailored for Teams</div>
<div className="text-lg font-light text-blueGray-500 mt-4">
JACoB is built from the ground up to address the specific needs of software development.
</div>
</div>
<div className="flex flex-wrap justify-between w-full mt-8">
<div className="w-full md:w-1/2 lg:w-1/3 p-4">
<div className="bg-dark-beige border border-solid border-[#e9dad7] rounded-lg p-4">
<div className="text-xl font-medium text-dark-blue">Efficiency Boost</div>
<div className="text-sm font-light text-blueGray-500 mt-2">
ACoB automates the repetitive and mundane, allowing you to concentrate on innovation and complex problem-solving.
</div>
</div>
</div>
<div className="w-full md:w-1/2 lg:w-1/3 p-4">
<div className="bg-dark-beige border border-solid border-[#e9dad7] rounded-lg p-4">
<div className="text-xl font-medium text-dark-blue">Quality Assurance</div>
<div className="text-sm font-light text-blueGray-500 mt-2">
With JACoB's AI-driven reviews, your code stays clean and maintainable.
</div>
</div>
</div>
<div className="w-full md:w-1/2 lg:w-1/3 p-4">
<div className="bg-dark-beige border border-solid border-[#e9dad7] rounded-lg p-4">
<div className="text-xl font-medium text-dark-blue">Rapid Integration</div>
<div className="text-sm font-light text-blueGray-500 mt-2">
JACoB fits into your workflow from day one, adapting to your tools and preferences.
</div>
</div>
</div>
<div className="w-full md:w-1/2 lg:w-1/3 p-4">
<div className="bg-dark-beige border border-solid border-[#e9dad7] rounded-lg p-4">
<div className="text-xl font-medium text-dark-blue">Scalable Development</div>
<div className="text-sm font-light text-blueGray-500 mt-2">
Handle more projects and complex code without expanding your team.
</div>
</div>
</div>
<div className="w-full md:w-1/2 lg:w-1/3 p-4">
<div className="bg-dark-beige border border-solid border-[#e9dad7] rounded-lg p-4">
<div className="text-xl font-medium text-dark-blue">Learning & Growth</div>
<div className="text-sm font-light text-blueGray-500 mt-2">
JACoB continuously learns from your codebase, contributing more effectively over time.
</div>
</div>
</div>
<div className="w-full md:w-1/2 lg:w-1/3 p-4">
<div className="bg-dark-beige border border-solid border-[#e9dad7] rounded-lg p-4">
<div className="text-xl font-medium text-dark-blue">Security & Control</div>
<div className="text-sm font-light text-blueGray-500 mt-2">
Hosted within your environment, JACoB ensures your code remains secure and proprietary.
</div>
</div>
</div>
</div>
</div>
</div>
);
};

export default DesignedForDevelopers;