mirror of
https://github.com/snowball-tools/snowballtools-base.git
synced 2025-11-30 20:34:09 +00:00
* Implement confirmation dialog for cancel deployment * Add menu to project and deployment card * Use dropdown for account selection * Organize create project components * Refactor cancel deployment dialog * Fix cancel button flex align * Fix typo --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
27 lines
685 B
TypeScript
27 lines
685 B
TypeScript
import React from 'react';
|
|
|
|
const ConnectAccount = () => {
|
|
return (
|
|
<div className="bg-gray-100 flex flex-col p-4 justify-end items-center text-center text-sm h-60 rounded-2xl">
|
|
<div>^</div>
|
|
<div>
|
|
<p>Connect to your git account</p>
|
|
<p>
|
|
Once connected, you can create projects by importing repositories
|
|
under the account
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<button className="bg-gray-300 rounded-full mx-2">
|
|
Connect to Github
|
|
</button>
|
|
<button className="bg-gray-300 rounded-full mx-2">
|
|
Connect to Gitea
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ConnectAccount;
|