diff --git a/src/components/FeatureCard/index.tsx b/src/components/FeatureCard/index.tsx
index f900594..2f2a8b2 100644
--- a/src/components/FeatureCard/index.tsx
+++ b/src/components/FeatureCard/index.tsx
@@ -34,7 +34,7 @@ const FeatureCard = ({
alignItems='center'
rowGap='10px'
borderRadius='10px'
- cursor='pointer'
+ cursor={selectable ? 'pointer' : undefined}
>
diff --git a/src/pages/AddProject/index.tsx b/src/pages/AddProject/index.tsx
index ea8e961..7cb476e 100644
--- a/src/pages/AddProject/index.tsx
+++ b/src/pages/AddProject/index.tsx
@@ -942,7 +942,8 @@ const AddProject = () => {
feature
)}
toggleSelect={() => {
- setSelectedFeature(feature);
+ if (feature.featureType !== 'backend')
+ setSelectedFeature(feature);
if (
featuresForm.values.selectedFeatures &&
!featuresForm.values.selectedFeatures.includes(
@@ -994,10 +995,15 @@ const AddProject = () => {
{selectedFeature?.wireframes?.map((wireframe) => (
+ overflow='hidden'
+ paddingTop='calc(591.44 / 1127.34 * 100%)'
+ position='relative'
+ className='wireframe'
+ >
+
+
))}
>
diff --git a/src/pages/AddProject/styles.ts b/src/pages/AddProject/styles.ts
index 7a0a656..986a768 100644
--- a/src/pages/AddProject/styles.ts
+++ b/src/pages/AddProject/styles.ts
@@ -15,4 +15,14 @@ export const Wrapper = styled.div`
stroke: ${({ theme, color }) => theme.colors[color || 'client'].main};
}
}
+
+ .wireframe {
+ img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ }
+ }
`;
diff --git a/src/pages/Auth/Login/index.tsx b/src/pages/Auth/Login/index.tsx
index 9a94477..a9534b7 100644
--- a/src/pages/Auth/Login/index.tsx
+++ b/src/pages/Auth/Login/index.tsx
@@ -135,13 +135,6 @@ const Login = () => {
loading={loading}
disabled={loading}
/>
- {/* }
- /> */}
@@ -150,9 +143,6 @@ const Login = () => {
Signup
-
- Build a Project
-
diff --git a/src/pages/Auth/Signup/index.tsx b/src/pages/Auth/Signup/index.tsx
index a20b130..701141e 100644
--- a/src/pages/Auth/Signup/index.tsx
+++ b/src/pages/Auth/Signup/index.tsx
@@ -125,13 +125,6 @@ const Signup = () => {
loading={loading}
disabled={loading}
/>
- {/* }
- /> */}
@@ -140,9 +133,6 @@ const Signup = () => {
Login
-
- Build a Project
-