-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
158 lines (143 loc) · 5.28 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
get_header();
get_template_part(
'modules/masthead',
null,
array(
'title' => 'Cutting-Edge AI Solutions for Government Contracting',
'subtitle' => 'PSci.AI specializes in using cutting-edge AI to help businesses excel in obtaining government contracts. Our technology offers practical solutions and key insights, making us a reliable ally across various sectors.',
'image' => 'https://tailwindui.com/img/component-images/dark-project-app-screenshot.png',
'ctas' => array(
array(
'title' => 'Schedule a demo',
'url' => '#',
'color' => 'indigo'
),
array(
'title' => 'Learn more',
'url' => site_url() . '/solutions',
'color' => 'transparent'
)
)
)
);
get_template_part('modules/stats');
?>
<section class="bg-slate-900 py-16">
<div class="mx-auto flex max-w-7xl items-center p-4 lg:px-8 flex flex-col lg:flex-column justify-between">
<h4 class="text-md font-light text-slate-400">
A New Era of Winning Contracts
</h4>
<div class="max-w-4xl text-center">
<h1 class="text-4xl font-bold text-white mt-8 mb-4">
The #1 AI-Powered Capture & Proposal Solution
</h1>
<p class="text-gray-300 mt-2">
Our Bidding Intelligence System is the first of its kind: an AI-powered, end-to-end automation system for
capture, proposal, and business development. Originally designed specifically for government contractors, we
have since broadened our expertise to support commercial contractors, academic institutions, non-profits, and a
diverse range of other businesses. Our goal is to harness the continuous breakthroughs in AI, enabling teams to
work more intelligently. This not only prevents burnout but also reduces unnecessary stress, empowering teams to
work smarter, not harder.
</p>
</div>
<?php
$list_items = array('Request for Proposals (RFPs)', 'Request for Information (RFIs)', 'Request for Quotation (RFQs)', 'Due Diligence Questionnaires (DDQs)', 'Task Order Responses', 'Source Sought Responses', 'Grant Proposals', 'Security Questionnaires');
?>
<div class="grid grid-cols-3 gap-8 mt-16">
<!-- grid items -->
<?php foreach ($list_items as $item) { ?>
<div class="flex items-center mt-8">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6">
</path>
</svg>
</div>
</div>
<div class="ml-4">
<h5 class="text-lg leading-6 font-medium text-white">
<?php echo $item; ?>
</h5>
</div>
</div>
<?php } ?>
</div>
</section>
<?php
get_template_part('modules/logo-wall');
$solutions = get_posts(
array(
'post_type' => 'solution',
'posts_per_page' => -1
)
);
$solution_columns = array();
foreach ($solutions as $solution) {
$masthead = get_field('masthead', $solution->ID);
$masthead_content = $masthead['masthead_content'];
$solution_columns[] = array(
'title' => $solution->post_title,
'subtitle' => (strlen($masthead_content) > 200) ? substr($masthead_content, 0, 200) . '...' : $masthead_content,
'url' => get_permalink($solution->ID)
);
}
get_template_part(
'modules/three-column-with-icons',
null,
array(
'title' => 'AI-Enabled Solutions through our Awarded.AI Platform',
'subtitle' => 'Our AI-enabled solutions help you win more contracts, respond to more opportunities, and empower your workforce securely and effectively.',
'columns' => $solution_columns
)
);
get_template_part(
'modules/split-with-image',
null,
array(
'title' => 'We Are Committed to Innovation',
'subtitle' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',
'image' => 'https://placehold.it/1000x1000',
'ctas' => array(
array(
'title' => 'Meet our team',
'url' => '/company',
'color' => 'indigo'
),
)
)
);
get_template_part('modules/latest-articles');
get_template_part(
'modules/split-with-image',
null,
array(
'title' => 'Partnering with leaders in the industry',
'subtitle' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',
'image' => 'https://placehold.it/1000x1000',
'ctas' => array(
array(
'title' => 'Learn more about our partners',
'url' => site_url() . '/partners',
'color' => 'indigo'
),
array(
'title' => 'Learn more',
'url' => '#',
'color' => 'transparent'
)
)
)
);
get_template_part(
'modules/centered-banner',
null,
array(
'title' => 'Get Started Today',
'subtitle' => "It's time to unlock the power of AI for your business. Give your team the tools they need to win more contracts, respond to more opportunities, and empower your workforce securely and effectively.",
'cta' => 'Get started',
'cta_link' => '#'
)
);
get_footer();