Skip to content

Commit

Permalink
ref: description
Browse files Browse the repository at this point in the history
  • Loading branch information
dipanshurdev committed Oct 8, 2024
1 parent 6c68d1d commit 56f6bda
Showing 1 changed file with 29 additions and 22 deletions.
51 changes: 29 additions & 22 deletions src/components/Wife.js
Original file line number Diff line number Diff line change
@@ -1,36 +1,43 @@
import React from 'react'
import './My.css'
import React from "react";
import "./My.css";

export default function Wife() {
const wifestyle = {
margin: '0',
color: 'white',
background: 'green',
position: 'relative',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
margin: "0",
color: "white",
background: "green",
position: "relative",
display: "flex",
flexDirection: "column",
alignItems: "center",
padding: "100px 20vw",
// fontFamily:
}
};
const wifestyle1 = {
marginTop: '20px',
color: 'white',
background: 'green',
position: 'relative',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
marginTop: "20px",
color: "white",
background: "green",
position: "relative",
display: "flex",
flexDirection: "column",
alignItems: "center",
padding: "100px 20vw",
}
};

return (
<>
<section style={window.innerWidth<=500?wifestyle1:wifestyle}>
<h1 style={{ textDecoration: 'underline' }}>Predict your Future Wife</h1>
<p>With thousands of success stories in our portfolio, Future Wife Predictor is here to predict your future wife with 100% accuracy. Using our database that contains thousands of beautiful women, we will find you your right match.</p>
<section style={window.innerWidth <= 500 ? wifestyle1 : wifestyle}>
<h1 style={{ textDecoration: "underline" }}>
Predict your Future Wife
</h1>
<p style={{ fontSize: "20px" }}>
With thousands of success stories in our portfolio, Future Wife
Predictor is here to predict your future wife with 100% accuracy. We
will find you the right match using our database of thousands of
beautiful women👸.
</p>
<p>Note: Only bachelors are advised to use this service.</p>
</section>
</>
)
);
}

0 comments on commit 56f6bda

Please sign in to comment.