Compare commits
10 Commits
638ea4de2d
...
11885aeedc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
11885aeedc | ||
|
|
e6704863cf | ||
|
|
36f79f374d | ||
|
|
80bd6ebe74 | ||
|
|
c6e3e24314 | ||
|
|
be4203a0f0 | ||
|
|
079f076fd0 | ||
|
|
5e79bcca73 | ||
|
|
cfd09db090 | ||
|
|
9037fa0c29 |
29
.dockerignore
Normal file
29
.dockerignore
Normal file
@@ -0,0 +1,29 @@
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
|
||||
# Docker files (not needed in image)
|
||||
docker-compose.yml
|
||||
Dockerfile
|
||||
|
||||
# Node / frontend
|
||||
node_modules
|
||||
npm-debug.log
|
||||
yarn.lock
|
||||
dist
|
||||
build
|
||||
|
||||
# PHP / backend
|
||||
vendor
|
||||
|
||||
# Env / logs
|
||||
.env
|
||||
*.log
|
||||
|
||||
# IDE
|
||||
.vscode
|
||||
.idea
|
||||
|
||||
# Tests
|
||||
tests
|
||||
coverage
|
||||
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM php:8.2-apache-bullseye
|
||||
|
||||
# Enable Apache rewrite module (optional but recommended)
|
||||
RUN a2enmod rewrite
|
||||
|
||||
# Allow .htaccess overrides (even if you don't use it now)
|
||||
RUN sed -ri 's/AllowOverride None/AllowOverride All/g' /etc/apache2/apache2.conf
|
||||
|
||||
# Set working directory
|
||||
WORKDIR /var/www/html
|
||||
|
||||
# Copy your app
|
||||
COPY . /var/www/html
|
||||
|
||||
# Permissions
|
||||
RUN chown -R www-data:www-data /var/www/html
|
||||
|
||||
EXPOSE 80
|
||||
@@ -44,7 +44,7 @@
|
||||
</div>
|
||||
<div class="is-text">
|
||||
<h3><span class="bold">ADDRESS</span></h3>
|
||||
<p>296/3, MTP Road,Near Tanishq Showroom, Coimbatore- 641029,Tamil Nadu, India</p>
|
||||
<p>424,Redrose Towers, DB Road, RS Puram, Coimbatore- 641002,Tamil Nadu, India</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="cis-cont">
|
||||
|
||||
@@ -4700,7 +4700,8 @@ header.affix .logo-2,
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 80px;
|
||||
|
||||
height: auto;
|
||||
}
|
||||
|
||||
header .logo .logo-img {
|
||||
@@ -4713,7 +4714,7 @@ header.affix .logo .logo-img {
|
||||
|
||||
.logo-2 {
|
||||
display: block;
|
||||
padding: 0;
|
||||
padding: 10px;
|
||||
transition: all 0.4s ease 0s;
|
||||
}
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<h1 class="cd-headline zoom light-72-wide sm-mt-20 sm-mb-20">
|
||||
<span>Edtech offers students </span> <br>
|
||||
<span class="cd-words-wrapper waiting">
|
||||
<b class="is-visible">an alternative learning journeys
|
||||
<b class="is-visible">An alternative learning journeys
|
||||
</b>
|
||||
</span>
|
||||
</h1>
|
||||
|
||||
@@ -425,18 +425,7 @@
|
||||
</div>
|
||||
<!-- End wrap -->
|
||||
<!-- JS begin -->
|
||||
<script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
|
||||
<script src="js/bootstrap.min.js"></script>
|
||||
<script src='js/jquery.magnific-popup.min.js'></script>
|
||||
<script type="text/javascript" src="js/isotope.pkgd.min.js"></script>
|
||||
<script type="text/javascript" src="js/imagesloaded.pkgd.min.js"></script>
|
||||
<script type="text/javascript" src="js/masonry.pkgd.min.js"></script>
|
||||
<script type="text/javascript" src="js/jquery.countTo.js"></script>
|
||||
<script type="text/javascript" src="js/jquery.appear.js"></script>
|
||||
<script type="text/javascript" src="js/owl.carousel.min.js"></script>
|
||||
<script type="text/javascript" src="js/jquery.stellar.min.js"></script>
|
||||
<script type="text/javascript" src="js/text-rotator.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
<?php include('includes/scripts.php'); ?>
|
||||
<!-- Custom Js -->
|
||||
<script>
|
||||
$(function() {
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 5.5 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 104 KiB |
BIN
images/logo.png
BIN
images/logo.png
Binary file not shown.
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 8.6 KiB |
@@ -10,7 +10,7 @@
|
||||
</div>
|
||||
<div class="footer-2-text-cont">
|
||||
<address>
|
||||
296/3, MTP Road,Near Tanishq Showroom, Coimbatore- 641029,Tamil Nadu, India
|
||||
424, Redrose Towers, DB Road, RS Puram, Coimbatore, India
|
||||
</address>
|
||||
</div>
|
||||
|
||||
@@ -124,7 +124,7 @@
|
||||
|
||||
<!-- Copyright -->
|
||||
<div class="left">
|
||||
<p class="footer-2-copy">Copyrights © 2023 - Powered by Tenext Technologies</p>
|
||||
<p class="footer-2-copy">Copyrights © 2025 - Powered by Tenext Technologies</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<head>
|
||||
<base href="/">
|
||||
<title>Tenext</title>
|
||||
<meta charset=utf-8>
|
||||
<meta name="robots" content="Tenext, technologies,mobile applications,enterprise app;ications">
|
||||
|
||||
@@ -209,12 +209,12 @@
|
||||
<li>
|
||||
<a href="overview">About Us</a>
|
||||
</li>
|
||||
<li>
|
||||
<!-- <li>
|
||||
<a href="javascript:;">Partners</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:;">Careers</a>
|
||||
</li>
|
||||
</li> -->
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
|
||||
12
includes/scripts.php
Normal file
12
includes/scripts.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
|
||||
<script src="js/bootstrap.min.js"></script>
|
||||
<script src='js/jquery.magnific-popup.min.js'></script>
|
||||
<script type="text/javascript" src="js/isotope.pkgd.min.js"></script>
|
||||
<script type="text/javascript" src="js/imagesloaded.pkgd.min.js"></script>
|
||||
<script type="text/javascript" src="js/masonry.pkgd.min.js"></script>
|
||||
<script type="text/javascript" src="js/jquery.countTo.js"></script>
|
||||
<script type="text/javascript" src="js/jquery.appear.js"></script>
|
||||
<script type="text/javascript" src="js/owl.carousel.min.js"></script>
|
||||
<script type="text/javascript" src="js/jquery.stellar.min.js"></script>
|
||||
<script type="text/javascript" src="js/text-rotator.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
34
overview.php
34
overview.php
@@ -50,12 +50,8 @@
|
||||
</div>
|
||||
<div class="line-3-70"></div>
|
||||
<div class="fes2-text-cont">
|
||||
Tenext aims to deliver world-class software solution that gives customers
|
||||
the control, insight and ability they need for competitive advantage in a global
|
||||
economy. Since 2016, Tenext has created and delivered comprehensive solutions to
|
||||
streamline retail, manufacturing, Agriculture, trading, financial Services,health care
|
||||
& hospitality verticals and help customers improve the way they
|
||||
do business and reach a new level of performance.
|
||||
Tenext stands as a beacon in the realm of software solutions, dedicated to providing customers with unparalleled control, insight, and capabilities to secure a competitive edge in the dynamic landscape of the global economy.
|
||||
With a rich history dating back to 2013, our commitment to excellence has propelled us to the forefront of the industry. At the heart of our mission is the creation and delivery of cutting-edge solutions that cater to a diverse range of sectors, including retail, manufacturing, agriculture, trading, financial services, healthcare, and hospitality.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -64,27 +60,19 @@
|
||||
<!-- Section2 -->
|
||||
<div class="page-section grey-light-bg clearfix">
|
||||
<div class="fes7-img-cont col-md-5">
|
||||
<div class="fes7-img" style="background-image: url(images/fame/company.jpg)"></div>
|
||||
<div class="fes7-img" style="background-image: url(images/blog/news-3.png)"></div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-md-offset-6 fes7-text-cont p-80-cont">
|
||||
<h1 class="mb-10"><span class="font-light">The Edge</span></h1>
|
||||
<h1 class="mb-10"><span class="font-light">Vision</span></h1>
|
||||
<p>
|
||||
Our approach to IT strategy is different, as it spans the visioning and scoping of the
|
||||
required change, its justification,
|
||||
its design and its implementation, so that it consistently creates value for our
|
||||
clients. Businesses are increasingly looking
|
||||
to IT to enable strategic change and to act as a source of competitive advantage.
|
||||
At the forefront of our IT strategy is a comprehensive approach that extends beyond conventional boundaries. We engage in a multifaceted process that encompasses the entire spectrum of IT transformation, from envisioning and defining the necessary changes to justifying their implementation. Our methodology is rooted in the understanding that IT is not merely a support function but a dynamic force capable of driving strategic shifts and serving as a key driver of competitive advantage. In an era where businesses are navigating constant change, our commitment lies in
|
||||
consistently delivering value to our clients by seamlessly integrating IT strategy into the broader fabric of organizational evolution.
|
||||
</p>
|
||||
<br>
|
||||
<h1 class="mb-10"><span class="font-light">The Future</span></h1>
|
||||
|
||||
<p>
|
||||
Our vision is to achieve Global Digital Transformation services leadership in providing
|
||||
value-added high quality IT solutions
|
||||
to our clients and customers in selected horizontal and vertical segments, by combining
|
||||
technology skills, domain expertise,
|
||||
process focus and a commitment to long-term relationships.
|
||||
We recognize that true innovation and resilience emerge not just from the adoption of technology but from a strategic orchestration that aligns IT initiatives with overarching business goals.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -115,15 +103,15 @@
|
||||
</div>
|
||||
<div class="col-xs-6 col-sm-4">
|
||||
<div class="count-number">
|
||||
100
|
||||
5
|
||||
</div>
|
||||
<div class="count-descr">
|
||||
<span class="count-title">Employees</span>
|
||||
<span class="count-title">Partners</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-6 col-sm-4">
|
||||
<div class="count-number">
|
||||
100
|
||||
50
|
||||
</div>
|
||||
<div class="count-descr">
|
||||
<span class="count-title">Global Employees</span>
|
||||
|
||||
Reference in New Issue
Block a user