|
6 | 6 | rem,
|
7 | 7 | Anchor,
|
8 | 8 | Grid,
|
| 9 | + Container, |
9 | 10 | } from "@mantine/core";
|
10 | 11 |
|
11 | 12 | import { Carousel } from "@mantine/carousel";
|
@@ -39,51 +40,53 @@ export function About() {
|
39 | 40 | const autoplay = useRef(Autoplay({ delay: 3000 }));
|
40 | 41 | return (
|
41 | 42 | <div id="about">
|
42 |
| - <Grid> |
43 |
| - <Grid.Col sm={6} xs={12}> |
44 |
| - <Title className={classes.title}>Who We Are</Title> |
45 |
| - <Text color="black" mt="md"> |
46 |
| - Our company was envisioned during a trip to{" "} |
47 |
| - <Anchor |
48 |
| - href="https://earth.google.com/web/search/Colchuck+Lake,+Leavenworth,+WA/@47.4984306,-120.8333841,1702.27471821a,686.05166596d,35y,0h,45t,0r/data=CokBGl8SWQolMHg1NDlhNDUwMzM0MzU2MmYzOjB4Y2FjM2E0MDRiMWM0OThkNxmvKeuSzL9HQCFooEMqVjVewCoeQ29sY2h1Y2sgTGFrZSwgTGVhdmVud29ydGgsIFdBGAIgASImCiQJkgGtdGnAR0ARThROffS0R0AZnKRRKqssXsAh0LA3KDs1XsAoAg" |
49 |
| - target="_blank" |
| 43 | + <Container size={1100} style={{ marginTop: "100px" }}> |
| 44 | + <Grid> |
| 45 | + <Grid.Col sm={6} xs={12}> |
| 46 | + <Title className={classes.title}>Who We Are</Title> |
| 47 | + <Text color="black" mt="md"> |
| 48 | + Our company was envisioned during a trip to{" "} |
| 49 | + <Anchor |
| 50 | + href="https://earth.google.com/web/search/Colchuck+Lake,+Leavenworth,+WA/@47.4984306,-120.8333841,1702.27471821a,686.05166596d,35y,0h,45t,0r/data=CokBGl8SWQolMHg1NDlhNDUwMzM0MzU2MmYzOjB4Y2FjM2E0MDRiMWM0OThkNxmvKeuSzL9HQCFooEMqVjVewCoeQ29sY2h1Y2sgTGFrZSwgTGVhdmVud29ydGgsIFdBGAIgASImCiQJkgGtdGnAR0ARThROffS0R0AZnKRRKqssXsAh0LA3KDs1XsAoAg" |
| 51 | + target="_blank" |
| 52 | + > |
| 53 | + Colchuck Lake |
| 54 | + </Anchor> |
| 55 | + , in the Enchantments of Washington State in 2018. We were |
| 56 | + inspired by the beauty of the lake, and the surrounding mountains. |
| 57 | + We wanted to bring that same beauty to our software. Founded by |
| 58 | + two industry experts, with a combined 40 years of experience, |
| 59 | + ready to make your dreams a reality. |
| 60 | + </Text> |
| 61 | + <Text color="black" mt="md"> |
| 62 | + Focused on excellence for our clients, we are well established, |
| 63 | + with a reputation for great service and a high-quality product. We |
| 64 | + are a team of experienced developers and designers, who are |
| 65 | + passionate about building beautiful, easy to use software. |
| 66 | + </Text> |
| 67 | + </Grid.Col> |
| 68 | + <Grid.Col sm={6} xs={12}> |
| 69 | + <Carousel |
| 70 | + withControls |
| 71 | + withIndicators |
| 72 | + loop={true} |
| 73 | + plugins={[autoplay.current]} |
| 74 | + onMouseEnter={autoplay.current.stop} |
| 75 | + onMouseLeave={autoplay.current.reset} |
50 | 76 | >
|
51 |
| - Colchuck Lake |
52 |
| - </Anchor> |
53 |
| - , in the Enchantments of Washington State in 2018. We were inspired |
54 |
| - by the beauty of the lake, and the surrounding mountains. We wanted |
55 |
| - to bring that same beauty to our software. Founded by two industry |
56 |
| - experts, with a combined 40 years of experience, ready to make your |
57 |
| - dreams a reality. |
58 |
| - </Text> |
59 |
| - <Text color="black" mt="md"> |
60 |
| - Focused on excellence for our clients, we are well established, with |
61 |
| - a reputation for great service and a high-quality product. We are a |
62 |
| - team of experienced developers and designers, who are passionate |
63 |
| - about building beautiful, easy to use software. |
64 |
| - </Text> |
65 |
| - </Grid.Col> |
66 |
| - <Grid.Col sm={6} xs={12}> |
67 |
| - <Carousel |
68 |
| - withControls |
69 |
| - withIndicators |
70 |
| - loop={true} |
71 |
| - plugins={[autoplay.current]} |
72 |
| - onMouseEnter={autoplay.current.stop} |
73 |
| - onMouseLeave={autoplay.current.reset} |
74 |
| - > |
75 |
| - <Carousel.Slide> |
76 |
| - <Image src="./images/colchuck-lake.jpeg" /> |
77 |
| - </Carousel.Slide> |
78 |
| - <Carousel.Slide> |
79 |
| - <Image src="./images/founders.png" /> |
80 |
| - </Carousel.Slide> |
81 |
| - {/* <Carousel.Slide> |
| 77 | + <Carousel.Slide> |
| 78 | + <Image src="./images/colchuck-lake.jpeg" /> |
| 79 | + </Carousel.Slide> |
| 80 | + <Carousel.Slide> |
| 81 | + <Image src="./images/founders.png" /> |
| 82 | + </Carousel.Slide> |
| 83 | + {/* <Carousel.Slide> |
82 | 84 | <Image src="./images/15401560621_9c96b7b02a_o.jpeg" />
|
83 | 85 | </Carousel.Slide> */}
|
84 |
| - </Carousel> |
85 |
| - </Grid.Col> |
86 |
| - </Grid> |
| 86 | + </Carousel> |
| 87 | + </Grid.Col> |
| 88 | + </Grid> |
| 89 | + </Container> |
87 | 90 | </div>
|
88 | 91 | );
|
89 | 92 | }
|
0 commit comments