Skip to content

Commit

Permalink
workflow deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
devsisingh committed Jun 17, 2024
1 parent 9e4fae2 commit 4566c9b
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 93 deletions.
93 changes: 0 additions & 93 deletions .github/workflows/nextjs.yml

This file was deleted.

78 changes: 78 additions & 0 deletions src/components/createbanner.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
import React from 'react'

const createbanner = () => {
return (
<div>
<div
className="w-1/2"
style={{
backgroundImage: 'url("/landing.png")',
backgroundSize: "cover",
backgroundPosition: "center",
position: "relative",
}}
>
<img
src="/image 4.png"
alt="Top Left"
style={{
position: "absolute",
top: "40px",
left: "40px",
width: "280px",
height: "280px",
}}
/>
<img
src="/image 6.png"
alt="Top Right"
style={{
position: "absolute",
top: "40px",
right: "40px",
width: "280px",
height: "280px",
}}
/>
<img
src="/image 8.png"
alt="Bottom Left"
style={{
position: "absolute",
bottom: "40px",
left: "40px",
width: "280px",
height: "280px",
}}
/>

<img
src="/image 7.png"
alt="Overlay"
style={{
position: "absolute",
bottom: "40px",
left: "40px",
width: "280px",
height: "300px",
marginBottom: "20px",
}}
/>

<img
src="/image 5.png"
alt="Bottom Right"
style={{
position: "absolute",
bottom: "40px",
right: "40px",
width: "280px",
height: "280px",
}}
/>
</div>
</div>
)
}

export default createbanner

0 comments on commit 4566c9b

Please sign in to comment.