Compare commits

...

10 Commits

Author SHA1 Message Date
thethinkloops
11885aeedc 27122025 2025-12-27 14:07:45 +05:30
thethinkloops
e6704863cf 27122025 2025-12-27 13:54:24 +05:30
thethinkloops
36f79f374d 26122025 2025-12-26 17:20:16 +05:30
thethinkloops
80bd6ebe74 24112025 2025-11-24 12:36:05 +05:30
thethinkloops
c6e3e24314 24112025 2025-11-24 12:27:39 +05:30
Aswin
be4203a0f0 22112023 2023-11-22 09:31:21 +05:30
Aswin
079f076fd0 tenextweb 2023-11-22 09:28:00 +05:30
Aswin
5e79bcca73 19112023 2023-11-19 13:44:28 +05:30
Aswin
cfd09db090 27102023 2023-10-27 18:33:24 +05:30
Aswin
9037fa0c29 27102023 2023-10-27 17:22:19 +05:30
14 changed files with 81 additions and 43 deletions

29
.dockerignore Normal file
View 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
View 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

View File

@@ -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">

View File

@@ -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;
}

View File

@@ -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>

View File

@@ -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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@@ -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>

View File

@@ -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">

View File

@@ -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
View 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>

View File

@@ -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>