-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f439bb
commit cc05c2e
Showing
9 changed files
with
440 additions
and
37 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
ui_tailwind_shadecn/src/components/custom_ui/Extensions.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import {Logo} from './Svg'; | ||
|
||
const Extension = ()=>{ | ||
return( | ||
<> | ||
<> | ||
<section className="body-font"> | ||
<div className="container px-5 py-24 mx-auto flex items-center md:flex-row flex-col"> | ||
<div className="flex flex-col md:pr-10 md:mb-0 mb-6 pr-0 w-full md:w-auto md:text-left text-center"> | ||
<h2 className="text-xs text-indigo-500 tracking-widest font-medium mb-1"> | ||
Downlod Our Extensions | ||
</h2> | ||
<h1 className="md:text-3xl text-2xl font-medium"> | ||
Make Devlelopment with our powerfull extensions | ||
</h1> | ||
</div> | ||
<div className="flex md:ml-auto md:mr-0 mx-auto items-center flex-shrink-0 space-x-4"> | ||
<button className="bg-secondary inline-flex py-3 px-5 rounded-lg items-center focus:outline-none"> | ||
<Logo /> | ||
<span className="ml-4 flex items-start flex-col leading-none"> | ||
<span className="text-xs text-primary mb-1">GET IT FOR</span> | ||
<span className="title-font font-medium">Visual Studio Code</span> | ||
</span> | ||
</button> | ||
<button className="bg-secondary inline-flex py-3 px-5 rounded-lg items-center focus:outline-none"> | ||
<Logo /> | ||
<span className="ml-4 flex items-start flex-col leading-none"> | ||
<span className="text-xs text-primary mb-1">INSTALL IT ON</span> | ||
<span className="title-font font-medium">Google Chrome</span> | ||
</span> | ||
</button> | ||
</div> | ||
</div> | ||
</section> | ||
</> | ||
|
||
</> | ||
) | ||
} | ||
|
||
export default Extension; |
Oops, something went wrong.